Answers for "get method from class by string python"

1

python execute function from string

import foo
method_to_call = getattr(foo, 'bar')
result = method_to_call()
Posted by: Guest on April-07-2020

Code answers related to "get method from class by string python"

Python Answers by Framework

Browse Popular Code Answers by Language