这里写错了吧 class News(Article): def __init__(self, title, pub_date, body, expried): Article.__init__(self, title, pub_date, body) # 调用父类的__init__进行构造,称之 重载 self.expried = expried
这里写错了吧 class News(Article): def __init__(self, title, pub_date, body, expried): Article.__init__(self, title, pub_date, body) # 调用父类的__init__进行构造,称之 重载 self.expried = expried