I am using python's very high level layer to embed some python code to a commercial application that supports a proprietary scripting language. The problem is that the application itself is coded in C++ and it has a embedded log window which displays cout and cerr. I was wondering if there is a way to print to cout/cerr from python... I already goggled a lot about it, but I cannot find a simple way to do it.
Thanks!
print? Am I missing something?printin Python will work, otherwise you might have to make special Python functions to be called instead ofprint.