python 调用Windows API
#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 = cd...
·
#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')
更多推荐
已为社区贡献2条内容
所有评论(0)