|
|
@ -218,21 +218,6 @@ from numbers import Number, Integral, Real, Rational, Complex |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
Print |
|
|
|
----- |
|
|
|
```python |
|
|
|
print(<el_1> [, <el_2>, end='', sep='', file=<file>]) # Use 'file=sys.stderr' for errors. |
|
|
|
``` |
|
|
|
|
|
|
|
```python |
|
|
|
>>> from pprint import pprint |
|
|
|
>>> pprint(locals()) |
|
|
|
{'__doc__': None, |
|
|
|
'__name__': '__main__', |
|
|
|
'__package__': None, ...} |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
String |
|
|
|
------ |
|
|
|
```python |
|
|
@ -305,6 +290,21 @@ import re |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
Print |
|
|
|
----- |
|
|
|
```python |
|
|
|
print(<el_1> [, <el_2>, end='', sep='', file=<file>]) # Use 'file=sys.stderr' for errors. |
|
|
|
``` |
|
|
|
|
|
|
|
```python |
|
|
|
>>> from pprint import pprint |
|
|
|
>>> pprint(locals()) |
|
|
|
{'__doc__': None, |
|
|
|
'__name__': '__main__', |
|
|
|
'__package__': None, ...} |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
Format |
|
|
|
------ |
|
|
|
```python |
|
|
|