Answers for "python get method by name"

-1

python get function from string name

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

Python Answers by Framework

Browse Popular Code Answers by Language