SyntaxFix
Write A Post
Hire A Developer
Questions
Treat function as variable in your program so you can just pass them to other functions easily:
def test (): print "test was invoked" def invoker(func): func() invoker(test) # prints test was invoked