RosettaCodeData/Task/Send-an-unknown-method-call/Python/send-an-unknown-method-call.py
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

6 lines
128 B
Python

class Example(object):
def foo(self, x):
return 42 + x
name = "foo"
getattr(Example(), name)(5) # => 47