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

Assignment creates local scope

a = 42
def f():
    a = 23
    print(a)

print('ok')
print(a)
f()
print(a)

ok
42
23
42