温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C语言程序怎么调用Python函数

发布时间:2021-07-20 13:57:57 来源:亿速云 阅读:110 作者:Leah 栏目:编程语言

本篇文章为大家展示了C语言程序怎么调用Python函数,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

Python脚本,存为pytest.py

def add(a,b):  print "in python function add"  print "a = " + str(a)  print "b = " + str(b)  print "ret = " + str(a+b)  return a + b

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

#include < stdio.h> #include < stdlib.h> #include "C:/Python26/include/python.h"  #pragma comment(lib, "C:\\Python26\\libs\\python26.lib")  int main(int argc, char** argv)  {  // 初始化Python  //在使用Python系统前,必须使用Py_Initialize对其  //进行初始化。它会载入Python的内建模块并添加系统路  //径到模块搜索路径中。这个函数没有返回值,检查系统  //是否初始化成功需要使用Py_IsInitialized。  PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pRetVal;  Py_Initialize();  // 检查初始化是否成功  if ( !Py_IsInitialized() )   {  return -1;  }  // 载入名为pytest的脚本(注意:不是pytest.py)  pName = PyString_FromString("pytest");  pModule = PyImport_Import(pName);  if ( !pModule )  {  printf("can't find pytest.py");  getchar();  return -1;  }  pDict = PyModule_GetDict(pModule);  if ( !pDict )   {  return -1;  }  // 找出函数名为add的函数  pFunc = PyDict_GetItemString(pDict, "add");  if ( !pFunc || !PyCallable_Check(pFunc) )  {  printf("can't find function [add]");  getchar();  return -1;  }  // 参数进栈  pArgs = PyTuple_New(2);  // PyObject* Py_BuildValue(char *format, ...)  // 把C++的变量转换成一个Python对象。当需要从  // C++传递变量到Python时,就会使用这个函数。此函数  // 有点类似C的printf,但格式不同。常用的格式有  // s 表示字符串,  // i 表示整型变量,  // f 表示浮点数,  // O 表示一个Python对象。  PyTuple_SetItem(pArgs, 0, Py_BuildValue("l",3));   PyTuple_SetItem(pArgs, 1, Py_BuildValue("l",4));  // 调用Python函数  pRetVal = PyObject_CallObject(pFunc, pArgs);  printf("function return value : %ld\r\n", PyInt_AsLong(pRetVal));  Py_DECREF(pName);  Py_DECREF(pArgs);  Py_DECREF(pModule);  Py_DECREF(pRetVal);  // 关闭Python  Py_Finalize();  return 0;  }  //一下为个人实践的另一套方法  #include < Python.h> #include < conio.h> int main()  {  Py_Initialize();  if (!Py_IsInitialized())  {  printf("初始化错误\n");  return -1;  }  PyObject* pModule = NULL;  PyObject* pFunc = NULL;  PyObject* pArg = NULL;  PyObject* pRetVal = NULL;  pModule = PyImport_ImportModule("hello");  pFunc = PyObject_GetAttrString(pModule,"hello");  pArg = Py_BuildValue("(i,i)",33,44);  pRetVal = PyObject_CallObject(pFunc,pArg);  printf("%d\n",PyInt_AsLong(pRetVal));  Py_Finalize();  _getch();  return 0;  }

上述内容就是C语言程序怎么调用Python函数,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI