私有方法:
def __work(self):
上面也是私有方法
e.Employee__work()
私有方法
在类内部调用自己的属性或方法,直接用self.__属性。
定义
def __function(self):
调用
s._classname__function()