Python 和 C语言的相互调用 第一种、Python调用C动态链接库(利用ctypes) 下面示例在linux或unix下可行。 pycall.c 1 2 3 4 5 6 7 8 /***gcc -o libpycall.so -shared -fPIC pycall.c*/ #include <stdio.h> #include <stdlib.h> int foo(int a, int b) { printf("you input %d ...