What's win32con module in python? Where can I find it?

前端 未结 7 1005
走了就别回头了
走了就别回头了 2020-12-01 09:13

I\'m building an open source project that uses python and c++ in Windows. I came to the following error message:

 ImportError: No module named win32con 


        
相关标签:
7条回答
  • 2020-12-01 09:50

    If you have pywin32 installed you can do in python 3.7+

    import win32.lib.win32con as win32con
    
    0 讨论(0)
提交回复
热议问题