python ctype模块 (一) 2023-01-31 05:01:17 python 模块 ctype 官网:https://docs.python.org/2.6/library/ctypes.html?highlight=ctype#module-ctypesctypes 的简单使用。ctypes 第一个程序hello world!from ctypes import * libc = CDLL("libc.so.6") libc.printf("hello,world!") 相关文章