python调用C++ 程序

1 python调用C++ 可执行程序 exe 并传递参数

C++文件

#include
#include
using namespace std;
//该文件名称:cpptest.cpp
//终端下编译指令:
//g++ -o cpptest  cpptest.cpp
int main(int argc,char* argv[])
{
    for(int x = 0;x< argc;x++)
    {
        cout<

python 文件

import os
string_para = "sssss"
int_para = 10
os.system(r'./cpptest "abcd" '+ string_para+r' '+str(int_para))##注意每个参数之间必须用空格隔开

你可能感兴趣的:(Python)