Function Python

def f1():
    x = 88
    def f2():
        print x
    f2()
f1()                  # prints 88