当前位置:首页 > 行业动态 > 正文

python如何调用c函数

在Python中调用C函数,可以使用ctypes库,以下是详细的步骤:

1、编写C代码并保存为.c文件,创建一个名为example.c的文件,内容如下:

#include <stdio.h>
int add(int a, int b) {
    return a + b;
}

2、使用gcc编译器将C代码编译为共享库,在命令行中输入以下命令:

gcc shared o example.so example.c

这将生成一个名为example.so的共享库文件。

3、在Python中使用ctypes库调用C函数,创建一个名为call_c_function.py的文件,内容如下:

import ctypes
加载共享库
example = ctypes.CDLL('./example.so')
定义参数类型和返回值类型
example.add.argtypes = [ctypes.c_int, ctypes.c_int]
example.add.restype = ctypes.c_int
调用C函数
result = example.add(3, 4)
print("3 + 4 =", result)

4、运行Python脚本:

python call_c_function.py

输出结果:

3 + 4 = 7

这就是如何在Python中调用C函数的方法。

0

随机文章