From ed7fa6a64111c64e00ea4f43435c48810c402fe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 30 Jan 2019 09:54:24 +0100 Subject: [PATCH] System --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3039872..c7cac91 100644 --- a/README.md +++ b/README.md @@ -818,10 +818,10 @@ print(, ..., sep=' ', end='\n', file=sys.stdout, flush=False) #### Pretty print: ```python >>> from pprint import pprint ->>> pprint(locals()) -{'__doc__': None, - '__name__': '__main__', - '__package__': None, ...} +>>> pprint(dir()) +['__annotations__', + '__builtins__', + '__doc__', ...] ``` ### Input Function