Scoping: global seen from fuction

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

f()