python 调用Windows API
程序员文章站
2022-07-05 10:58:18
...
#python 调用Windows API(使用IDLE开发环境)
from ctypes import *
msvcrt = cdll.LoadLibrary('msvcrt')
for i in 'love':
msvcrt.printf(i)
#python 调用Windows API(使用VS开发环境)
from ctypes import *
msvcrt = cdll.LoadLibrary('msvcrt')
msvcrt.printf('love\n')
上一篇: go调用windows api
下一篇: Redis 订阅发布模式底层实现