Answers for "python method name in string call"

-1

python get function from string name

module = __import__('foo')
func = getattr(module, 'bar')
func()
Posted by: Guest on June-25-2020

Code answers related to "python method name in string call"

Python Answers by Framework

Browse Popular Code Answers by Language