From fb6c9b38a8bd832274a0ac51eaad66900d7211b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 27 Jan 2019 09:11:37 +0100 Subject: [PATCH] Print --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 38b252e..7d63008 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,21 @@ from numbers import Number, Integral, Real, Rational, Complex ``` +Print +----- +```python +print( [, , end='', sep='', 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( [, , end='', sep='', file=]) # Use 'file=sys.stderr' for errors. -``` - -```python ->>> from pprint import pprint ->>> pprint(locals()) -{'__doc__': None, - '__name__': '__main__', - '__package__': None, ...} -``` - - Regex ----- ```python