Python を C++ コードに埋め込む小さなプログラム (以下のプログラム) を作成しています。
#include <Python.h>
int main()
{
int x;
Py_Initialize();
const char* pythonScript = "print 'Start'"
PyRun_SimpleString(pythonScript);
/*
assign a python variable 'n' to 'x' i.e n=x
*/
Py_Finalize();
return 0;
}
ここでの私の要件は、Python 変数 'n' に C++ 変数 'x' の値を割り当てることです。これを行う方法はありますか?
前もって感謝します。