class Test: # def __init__(self): # print('inir called') def testFunction(self): return 10 * 5 def testFunction2(self): print(self) self.testFunction() return 10 * 50