RosettaCodeData/Task/Send-an-unknown-method-call/Python/send-an-unknown-method-call.py

7 lines
128 B
Python
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
class Example(object):
def foo(self, x):
return 42 + x
name = "foo"
getattr(Example(), name)(5) # => 47