When I call a external .exe program in python, how can I
get the output of printf in .exe application and print them on python IDE?
|
|
When I call a external .exe program in python, how can I get the output of printf in .exe application and print them on python IDE?
|
||
|
|
|
|
To call an external program from Python, use the subprocess module.
An example from the doc (
A concrete example, using
|
||||||||
|
|
|
I am pretty sure that you are talking about Windows here (based on the phrasing of your question), but in a Unix/Linux (including Mac) environment, the commands module is also available:
The commands module provides an extremely simple interface to run commands and get the status (return code) and the output (reads from stdout and stderr). Optionally, you can get just status or just output by calling commands.getstatus() or commands.getoutput() respectively. |
||
|
|