Loading

摘要: class Foo(): def __init__(self, x): print("this is class of Foo.") print("Foo类属性初始化") self.f = "foo" print(x) class Children(Foo): def __init__(self): 阅读全文
posted @ 2021-03-07 21:47 Guang'Jun 阅读(2434) 评论(0) 推荐(0) 编辑