Answers for "python call class method by name"

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
0

python call function in class

#------------------------------------
#CLASS
#------------------------------------
class Student:
  def __init__(self):
    self.name = None
    
  def set_name(self, word):
    self.name = word
    return self.get_name()
    
  def get_name(self):
    return self.name
  
#------------------------------------
# USAGE:
#------------------------------------

a = Student()
print(a.set_name("Hello"))
Posted by: Guest on February-18-2021
-1

python get function from string name

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

Code answers related to "python call class method by name"

Python Answers by Framework

Browse Popular Code Answers by Language