Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

What is in our namespace?

print(dir())
import sys
print(dir())
from sys import argv
print(dir())

['__annotations__', '__builtins__', '__cached__', '__doc__',
      '__file__', '__loader__', '__name__', '__package__', '__spec__']

['__annotations__', '__builtins__', '__cached__', '__doc__',
      '__file__', '__loader__', '__name__', '__package__', '__spec__', 'sys']

['__annotations__', '__builtins__', '__cached__', '__doc__',
      '__file__', '__loader__', '__name__', '__package__', '__spec__', 'argv', 'sys']