摘要: class Animal: def __init__(self,name,agr,hp): self.name = name self.agr = agr self.hp = hp class Dog(Animal): def __init__(self,name,agr,hp,kind): Animal.__i... 阅读全文
posted @ 2018-10-21 14:51 为了等 阅读(101) 评论(0) 推荐(0) 编辑