Python print output while embedding Python in C\C++
Where does Python print
to, if the print
statement is in a python function, called from 开发者_如何学JAVAC\C++ in an embedded Python configuration?
In python, the print
statement writes into sys.stdout
(which is the standard output) even in an embedded app, you should see your prints in the console that started the application.
精彩评论