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 应该是这样写 专栏中的这个位置有问题