Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Python.h"
- int main(){
- Py_Initialize();
- FILE* archivo_python = fopen("./codigo_python.py", "r");
- PyRun_SimpleFile(archivo_python, "./codigo_python.py");
- Py_Finalize();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement