5 lines
85 B
Python
5 lines
85 B
Python
|
from win32com.client import constants
|
||
|
|
||
|
for const in dir(constants):
|
||
|
print(const)
|