新手在学习python时候,会遇到很多的坑,下面来具体说说其中一个. 在使用python编写面向对象的程序时,新手可能遇到TypeError: this constructor takes no arguments这个错误. 例如下面的程序: class Ball: def _init_(self,color,size,direction): self.color=color self.size=size self.direction=direction def bounce(self): if…