python指针参数_python 调用c函数时如何传递指针参数?
引用来自“wei2011”的评论你的c函数要编译成so或dll,然后用ctypes模块调用就行了,ctypes模块文档:https://docs.python.org/3/library/ctypes.html代码大概如下:from ctypes import *lib = cdll.LoadLibrary('xxx') # xxx是你的库,so或dlltest = lib.test # 取得函...