# coding:utf-8 # author:我本善良 # create_time:2021/5/30 16:32 ''' python中封装的概念 将不对外的私有属性或方法通过可对外使用的函数而使用(类中定义私有的,只有类内部使用,外部无法访问) 这样做的主要原因是:保护隐私,明确区分内外 ''' class Parent(object): def __hello(self,data): print('hello %s' % data) def helloworld(self): self.__hello('world') parent1 = Parent() parent1.helloworld()