If I have a string that contains the name of a function, can I call it?
As in:
def someFunction():
print "Hello"
s = "someFuncti on"
s() # I know this is wrong, but you get the idea...
/David
As in:
def someFunction():
print "Hello"
s = "someFuncti on"
s() # I know this is wrong, but you get the idea...
/David
Comment