How can I flush the output of the print function (unbuffer python output)?

How do I force Python’s print function to output to the screen?

1
13

In Python 3, print can take an optional flush argument:

print("Hello, World!", flush=True)

In Python 2 you’ll have to do

import sys
sys.stdout.flush()

after calling print. By default, print prints to sys.stdout (see the documentation for more about file objects).

Leave a Comment