![]() |
|
#8
|
|||
|
|||
|
Sometimes python print statements are buffered. To flush them you can do the following:
Code:
import sys . . . print 'output' sys.stdout.flush() #Flush print buffer |
|
|