def getStuff(x):
return 'stuff'+x
def getData(x):
return 'data'+x
thefunctions = []
thefunctions.append("getStuff")
thefunctions.append("getData")
for i in thefunctions:
print i('abc')
这可能吗?谢谢。
答案 0 :(得分:12)
thefunctions = [ getStuff, getData ]
for f in thefunctions:
print f('shazam')
完成def
语句后,您已将名称与功能相关联。只需使用该名称即可引用该功能。