最新回答 / 打字的狐狸
实例的属性定义函数中也不能直接调用私有的类属性,需要加一个类方法,在实例的属性定义中:class Animal(object): __count=0 def __init__(self,name,age): self.name=name self.age=age Animal.set_count() @classmethod def set_count(cls): cls.__count+=1 @classmethod ...
2022-04-23
最新回答 / weixin_慕圣3493772
你在BasStudent里面两次调用了super方法,一厢情愿地认为会分别调用两个父类的init方法,但实际上不是,所以程序报错认为缺参数(可能是两次调用了同一个三参数的父类init方法)。具体原因我也没搞清楚,不过网上的忠告:不惜一切代价地避免多重继承,它带来的麻烦比能解决的问题都多。如果你非要用,那你得准备好专研类的层次结构,以及花时间去找各种东西的来龙去脉吧!
2022-03-05
最新回答 / 慕前端7080484
class BasStudent(Student,BasketballMixin): def __init__(self,name,gender,score,skill,basketball): super(BasStudent, self).__init__(name,gender,score) def getskill(n,k): print("我叫 %s,我会打%s "%(n,k))a=Student('jiji','boy',13)b=BasketballM...
2022-03-04
最新回答 / 高飞的鱼
f = open("./test.txt",'r'),这里可以换成具体的文件路径,比如,
f = open('/Users/lihui/Desktop/hoho.txt', 'r')
2022-03-03