How to flush print

J

Jay Davis

If you open a file the usual way, you can flush
the output buffer with .flush(). How do you flush
the output buffer of a print command, either
'print string' or 'print >>ofile, string' ?
 
G

Gerrit

Jay said:
If you open a file the usual way, you can flush
the output buffer with .flush(). How do you flush
the output buffer of a print command, either
'print string' or 'print >>ofile, string' ?

print string

is really short for

sys.stdout.write("%s" % string)

so you can flush it with

sys.stdout.flush()

Gerrit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,535
Members
45,007
Latest member
obedient dusk

Latest Threads

Top