I would like to call python script files from my c++ program.
I am not sure that the people I will distribute to will have python installed.
Basically I\'m
Use system call to run a python script from C++
#include #include using namespace std; int main () { int result = system("/usr/bin/python3 testGen1.py 1"); cout << result; }