TypeError: Studdent() takes no arguments
时间: 2024-06-15 08:05:01 浏览: 180
MNE-Python : TypeError: today() takes no keyword arguments
5星 · 资源好评率100%
TypeError: Studdent() takes no arguments 是一个类型错误,它表示在创建 Studdent 对象时传入了参数,但是该类的构造函数不接受任何参数。
可能的原因是在创建 Studdent 对象时,使用了类似于 Studdent(arg1, arg2) 的语法,而 Studdent 类的构造函数定义为 def __init__(self):,没有接受任何参数。
要解决这个错误,可以检查创建 Studdent 对象的代码,确保没有传入任何参数。如果需要传入参数来初始化 Studdent 对象,需要修改 Studdent 类的构造函数,使其接受相应的参数。
阅读全文