1 class test(object): 2 def __init__(self): 3 self.x = 10 4 self._x = 20 5 self.__x = 30 6 t = test() 7 print(t.x) # 10 8 print(t._x) # 20 9 # print(t.__x) # AttributeError: ‘test‘ object has no attribute ‘__x‘
原文:https://www.cnblogs.com/qinlai/p/13154526.html