smc_cet_cibil_py/Controllers/testclass.py
2023-10-06 16:44:28 +05:30

11 lines
220 B
Python

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