摘要: 1 class A: 2 def test(self): 3 print("a.test") 4 super().test() 5 6 7 class B: 8 def test(self): 9 print("b.test") 10 11 12 class C(A, B): 13 def test... 阅读全文
posted @ 2018-11-28 14:51 两只老虎111 阅读(229) 评论(0) 推荐(0) 编辑