摘要: 今日内容 单继承下的属性查找 class Foo: def __f1(self): # _Foo__f1() print('Foo.f1')​ def f2(self): print('Foo.f2') self.f1() # self._Foo__f1()​class Bar(Foo): # _B 阅读全文
posted @ 2021-07-14 17:32 小白白柏柏 阅读(197) 评论(0) 推荐(0)