Function Python Tutorial

def foo():
     print 'in foo()'
bar = foo
bar()
def bar(argfunc):
  argfunc()
bar(foo)