Search Results

7
votes

What is the best way to make an .exe file from a python program

py2exe is probably what you want, but it only works on Windows. PyInstaller …
0
votes

Python embedded in CPP: how to get data back to CPP

You should be able to return the result from MyFunc, which would then end up in the variable you are currently calling "ignored". This eliminates the need to access it in any other way. …