Answers for "python calling dynamic function on object"

1

python calling dynamic function on object

obj = MyClass()
try:
    func = getattr(obj, "dostuff")
    func()
except AttributeError:
    print "dostuff not found"
Posted by: Guest on October-31-2020

Code answers related to "python calling dynamic function on object"

Python Answers by Framework

Browse Popular Code Answers by Language