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

7 lines
128 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Example(object):
def foo(self, x):
return 42 + x
name = "foo"
getattr(Example(), name)(5) # => 47