|
|
@ -809,10 +809,11 @@ arguments = sys.argv[1:] |
|
|
|
|
|
|
|
### Print Function |
|
|
|
```python |
|
|
|
print(<el_1>, <el_2>, ..., sep=' ', end='\n', file=sys.stdout) |
|
|
|
print(<el_1>, <el_2>, ..., 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 |
|
|
|