实际上也就是在python之中调用c语言的动态链接库中的函数。
编写一个c语言函数test.c:
1 int multiply(int num1, int num2)
2 {
3 return (num1 * num2);
4 }
然后编译为动态链接诶库。
$gcc --shared -fPIC test.c -o test.so
编译一个python脚本test.py:
1 #! /usr/bin/env python
2 from ctypes import *
3 import os
4 libtest = cdll.LoadLibrary(os.getcwd() + "/test.so");
5 print libtest.multiply(2, 2)
运行python test.py
打印出4