class MyClass:
def __init__(self):
pass
def func1(self):
# do something
print(‘a‘) #for example
self.common_func()
def func2(self):
# do something
self.common_func()
def common_func(self):
pass
原文:https://www.cnblogs.com/kekeoutlook/p/12234387.html