C/C++编程调用Python脚本集锦

Posted 万江波的网客庄园

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C/C++编程调用Python脚本集锦相关的知识,希望对你有一定的参考价值。

1.C++调用Python脚本中的函数这是基于vs的。如果用于纯C++,如Dev C++(这个已经测试通过),  BC++B(这个还没测试)。注释掉

//#include "stdafx.h" 
将语句:int _tmain(int argc, _TCHAR* argv[])
修改为:int main()。头部代码如下:
//#include "stdafx.h" 
#include <stdlib.h>
#include <iostream> 
#include <Python.h>
using namespace std;

//int main(int argc, _TCHAR* argv[])
int main(void)

{

}

  Python安装为最新版的32位的V3.9.5版。


添加:包含文件的路径,如:D:\\Python\\Pyth3.9.5\\include
添加:链接参数,如:
-ID:\\Python\\Pyth3.9.5\\include
-LD:\\Python\\Pyth3.9.5\\libs
-lpython39
2.Python代码的编译
3.Dev C++中C语言程序调用Python


以上是关于C/C++编程调用Python脚本集锦的主要内容,如果未能解决你的问题,请参考以下文章

Python与C/C++混合编程

常用Javascript代码片段集锦

使用参数从 Python 调用 C/C++ 代码

lua如何调用java程序

《Python开发 - Python杂记》Python与C/C++混合编程

《Python开发 - Python杂记》Python与C/C++混合编程