Function Python Tutorial

def foo():
    def bar():
        print 'bar() called'
    print 'foo() called'
    bar()
foo()