11 lines
220 B
Python
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 |