欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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')