I'm programmatically running scripts from another process. And, waiting for outputs, on the stdout stream, from within my own functions.
But, as python's (and javascript's) console does, it automatically prints the result of my expression to the console (thus the stdout stream).
Can I stop this, so that I can execute expressions and use the stdout stream to solely read my output?