6 lines
128 B
Python
6 lines
128 B
Python
class Example(object):
|
|
def foo(self, x):
|
|
return 42 + x
|
|
|
|
name = "foo"
|
|
getattr(Example(), name)(5) # => 47
|