Skip to content

Commit 79d20c2

Browse files
committed
System
1 parent 7e65e99 commit 79d20c2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,10 +809,11 @@ arguments = sys.argv[1:]
809809

810810
### Print Function
811811
```python
812-
print(<el_1>, <el_2>, ..., sep=' ', end='\n', file=sys.stdout)
812+
print(<el_1>, <el_2>, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
813813
```
814814

815815
* **Use `'file=sys.stderr'` for errors.**
816+
* **Use `'flush=Ture'` to forcibly flush the stream.**
816817

817818
#### Pretty print:
818819
```python

0 commit comments

Comments
 (0)