我正在努力解决这个问题。
所以这就是我想要做的:我有三个功能。比如说 foo,bar 和 foo_bar
def foo_bar(function):
for i in range(20):
function # execute function
def foo(someargs):
print "hello from foo"
def bar(someargs):
print " hello from bar"
当我这样做的时候foo_bar(foo)
# how to specify arguments to foo??
我期待我看到"hello from foo" 20 times
?
但既然我没有看到......我显然不太了解这一点?