If I have a Python class, and would like to call a function from it depending on a variable, how would I do so? I imagined following could do it:
class CallM
Your code does not look like python, may be you want to do like this?
class CallMe: def App(self): #// Method one print "hello" def Foo(self): #// Method two return None variable = App #// Method to call CallMe().variable() #// Calling App()