Created
March 25, 2013 09:18
-
-
Save santosh/5235922 to your computer and use it in GitHub Desktop.
This script demonstrate the `flush` argument of print() function.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| #-*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| from time import sleep | |
| string = "The words in this sentence should appear letter by letter." | |
| print("Please wait if you don't see another sentence appearing below.", end="\n\n") | |
| for characters in string: | |
| # If flush disabled the another line will appear at once and not char by char. | |
| print(characters, end="", flush=True) | |
| sleep(.1) |
No, it works as intended. let me explain, all the values passed into print function are buffered until a new line is printed and then the text is flushed to the stream (opened file) or stdout (console).
if there is no new line added after every print function call which can be acheived by adding the optional argument end="" then the text is buffered. by default the value of end is \n
so only way to push the characters to stdout is to flush forcibly which is acheived via flush=True argument
and if flush=False, then you are buffering all the characters and only after the final sleep time the entire text is printed on console
Screen.Recording.2025-12-04.at.10.59.48.AM.mov
I post a comment two years ago and now I get an email from github about this gist. Also that this gist was here in 2013.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I agree with this