From 79d20c2c5187ce2dbeeb8cb47a71ba38c500ee2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 30 Jan 2019 09:44:18 +0100 Subject: [PATCH] System --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab41d75..2ae18fb 100644 --- a/README.md +++ b/README.md @@ -809,10 +809,11 @@ arguments = sys.argv[1:] ### Print Function ```python -print(, , ..., sep=' ', end='\n', file=sys.stdout) +print(, , ..., sep=' ', end='\n', file=sys.stdout, flush=False) ``` * **Use `'file=sys.stderr'` for errors.** +* **Use `'flush=Ture'` to forcibly flush the stream.** #### Pretty print: ```python