I wrote a short script that never terminates. This script continuously generates output that I have to check on every now and then. I\'m running it on a lab computer through
You need to flush the output sys.stdout.flush() (or smth) if you want to see it immediately. See this
sys.stdout.flush()