摘要: 一、面向对象复习 1、类的继承 class Base(object): def __init__(self,val): self.val = val def func(self): self.test() print(self.val) def test(self): print("Base.tes 阅读全文
posted @ 2018-06-08 03:43 guoyunlong666 阅读(207) 评论(0) 推荐(0) 编辑