Browse Source

Print

pull/10/head
Jure Šorn 5 years ago
parent
commit
fb6c9b38a8
1 changed files with 15 additions and 15 deletions
  1. 30
      README.md

30
README.md

@ -218,6 +218,21 @@ 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
@ -256,21 +271,6 @@ String
```
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, ...}
```
Regex
-----
```python

Loading…
Cancel
Save