How do I force Python\'s print function to output to the screen?
This is not a duplicate of Disable output buffering - the linked question is attempting unbuffe
I did it like this in Python 3.4:
'''To write to screen in real-time''' message = lambda x: print(x, flush=True, end="") message('I am flushing out now...')