Skip to content

Commit fb6c9b3

Browse files
committed
Print
1 parent 101405b commit fb6c9b3

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,21 @@ from numbers import Number, Integral, Real, Rational, Complex
218218
```
219219

220220

221+
Print
222+
-----
223+
```python
224+
print(<el_1> [, <el_2>, end='', sep='', file=<file>]) # Use 'file=sys.stderr' for errors.
225+
```
226+
227+
```python
228+
>>> from pprint import pprint
229+
>>> pprint(locals())
230+
{'__doc__': None,
231+
'__name__': '__main__',
232+
'__package__': None, ...}
233+
```
234+
235+
221236
String
222237
------
223238
```python
@@ -256,21 +271,6 @@ String
256271
```
257272

258273

259-
Print
260-
-----
261-
```python
262-
print(<el_1> [, <el_2>, end='', sep='', file=<file>]) # Use 'file=sys.stderr' for errors.
263-
```
264-
265-
```python
266-
>>> from pprint import pprint
267-
>>> pprint(locals())
268-
{'__doc__': None,
269-
'__name__': '__main__',
270-
'__package__': None, ...}
271-
```
272-
273-
274274
Regex
275275
-----
276276
```python

0 commit comments

Comments
 (0)