C调用Python函数相关代码示例剖析

开发 后端
C调用Python函数的相关操作将会在这篇文章中通过一段代码示例来为大家详细介绍。初学者们可以通过这里介绍的内容充分掌握这一应用技巧。

我们在使用C语言的时候,有时会遇到需要调用Python函数来完成一些特定的功能。那么接下来,我们将会在这里为大家详细介绍一下C调用Python函数的相关操作方法,希望可以给大家带来一些帮助。

Python脚本,存为pytest.py

  1. def add(a,b):  
  2. print "in python function add"  
  3. print "a = " + str(a)  
  4. print "b = " + str(b)  
  5. print "ret = " + str(a+b)  
  6. return a + b 

C调用Python函数的代码示例:

  1. #include < stdio.h> 
  2. #include < stdlib.h> 
  3. #include "C:/Python26/include/python.h"  
  4. #pragma comment(lib, "C:\\Python26\\libs\\python26.lib")  
  5. int main(int argc, char** argv)  
  6. {  
  7. // 初始化Python  
  8. //在使用Python系统前,必须使用Py_Initialize对其  
  9. //进行初始化。它会载入Python的内建模块并添加系统路  
  10. //径到模块搜索路径中。这个函数没有返回值,检查系统  
  11. //是否初始化成功需要使用Py_IsInitialized。  
  12. PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pRetVal;  
  13. Py_Initialize();  
  14. // 检查初始化是否成功  
  15. if ( !Py_IsInitialized() )   
  16. {  
  17. return -1;  
  18. }  
  19. // 载入名为pytest的脚本(注意:不是pytest.py)  
  20. pName = PyString_FromString("pytest");  
  21. pModule = PyImport_Import(pName);  
  22. if ( !pModule )  
  23. {  
  24. printf("can't find pytest.py");  
  25. getchar();  
  26. return -1;  
  27. }  
  28. pDict = PyModule_GetDict(pModule);  
  29. if ( !pDict )   
  30. {  
  31. return -1;  
  32. }  
  33. // 找出函数名为add的函数  
  34. pFunc = PyDict_GetItemString(pDict, "add");  
  35. if ( !pFunc || !PyCallable_Check(pFunc) )  
  36. {  
  37. printf("can't find function [add]");  
  38. getchar();  
  39. return -1;  
  40. }  
  41. // 参数进栈  
  42. pArgs = PyTuple_New(2);  
  43. // PyObject* Py_BuildValue(char *format, ...)  
  44. // 把C++的变量转换成一个Python对象。当需要从  
  45. // C++传递变量到Python时,就会使用这个函数。此函数  
  46. // 有点类似C的printf,但格式不同。常用的格式有  
  47. // s 表示字符串,  
  48. // i 表示整型变量,  
  49. // f 表示浮点数,  
  50. // O 表示一个Python对象。  
  51. PyTuple_SetItem(pArgs, 0, Py_BuildValue("l",3));   
  52. PyTuple_SetItem(pArgs, 1, Py_BuildValue("l",4));  
  53. // 调用Python函数  
  54. pRetVal = PyObject_CallObject(pFunc, pArgs);  
  55. printf("function return value : %ld\r\n", PyInt_AsLong(pRetVal));  
  56. Py_DECREF(pName);  
  57. Py_DECREF(pArgs);  
  58. Py_DECREF(pModule);  
  59. Py_DECREF(pRetVal);  
  60. // 关闭Python  
  61. Py_Finalize();  
  62. return 0;  
  63. }  
  64. //一下为个人实践的另一套方法  
  65. #include < Python.h> 
  66. #include < conio.h> 
  67. int main()  
  68. {  
  69. Py_Initialize();  
  70. if (!Py_IsInitialized())  
  71. {  
  72. printf("初始化错误\n");  
  73. return -1;  
  74. }  
  75. PyObject* pModule = NULL;  
  76. PyObject* pFunc = NULL;  
  77. PyObject* pArg = NULL;  
  78. PyObject* pRetVal = NULL;  
  79. pModule = PyImport_ImportModule("hello");  
  80. pFunc = PyObject_GetAttrString(pModule,"hello");  
  81. pArg = Py_BuildValue("(i,i)",33,44);  
  82. pRetVal = PyObject_CallObject(pFunc,pArg);  
  83. printf("%d\n",PyInt_AsLong(pRetVal));  
  84. Py_Finalize();  
  85. _getch();  
  86. return 0;  

以上就是我们对C调用Python函数的相关操作方法的介绍。

【编辑推荐】

  1. Python插件PyDev正确配置方法解读
  2. Python future模块常见示例相关解读
  3. Python调用zip命令正确操作方法解析
  4. Python元组创建方法及特殊性解析
  5. Python运算符基本类型总结
责任编辑:曹凯 来源: 博客园
相关推荐

2010-03-19 14:44:30

Python模块级函数

2010-02-03 10:05:48

C++ enum枚举

2010-02-05 10:23:09

C++基本函数

2010-03-04 09:40:52

Python Clas

2010-02-04 16:07:39

C++回调函数

2009-08-27 15:53:30

C#中using wo

2010-03-22 15:18:27

2009-09-01 11:04:59

C#调用扩展方法

2010-03-05 09:49:34

Python文件操作

2010-02-25 13:40:17

WCF禁用安全配置

2009-12-28 08:54:58

ADO错误

2010-03-18 09:33:46

python随机数模块

2022-07-18 15:32:37

C++虚函数表

2010-03-22 17:53:50

Python字符Python字符串

2010-02-05 17:09:19

C++创建Web服务

2009-10-15 17:50:48

VB.NET调用API

2009-09-01 16:49:56

C#文件上传下载

2010-02-01 11:22:09

C++虚函数

2009-08-19 04:16:00

C#代码与#函数相互调

2009-10-23 11:31:05

CLR Via C#调
点赞
收藏

51CTO技术栈公众号