Answers for "call a function with a 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
-1

python call function by string

getattr(obj, 'func')('foo', 'bar', 'args')
Posted by: Guest on March-20-2021

Code answers related to "call a function with a string python"

Python Answers by Framework

Browse Popular Code Answers by Language