tags:

views:

123

answers:

1
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')

Is this possible? Thank you.

+12  A: 
thefunctions = [ getStuff, getData ]
for f in thefunctions:
    print f('shazam')

Once you've done a def statement, you've associated a name with a function. Just use that name to refer to the function.

Jonathan Feinberg