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