Python学习笔记——私有化一、类中的私有化
一、类中的私有化类中有私有属性,私有方法,对外保密,也不会被子类继承。1、私有属性下面我们就写个类。class test(object): """docstring for test""" def __init__(self): super(test, self).__init__() self.__num = 100私有属性__num,下面我们从外面