摘要: 继承顺序 ''' 一点需要注意 ''' class Father: def f1(self): print("test func followed ==>") self.test() def test(self): print("from Father test") class Son(Father 阅读全文
posted @ 2017-07-06 16:04 Z贺 阅读(2310) 评论(2) 推荐(0) 编辑