Answers for "python invoke function by name from file"

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 "python invoke function by name from file"

Python Answers by Framework

Browse Popular Code Answers by Language