新手学python,现在遇到一个问题真的要吐血了!!!!完全不知道错在哪!
报错是Traceback(mostrecentcalllast):File"E:/python2.5/作业文件/银行账户问题+利息",line39,in<module>Y...
报错是
Traceback (most recent call last):
File "E:/python2.5/作业文件/银行账户问题+利息", line 39, in <module>
YQaccount=InterestAccount(0.03)
File "E:/python2.5/作业文件/银行账户问题+利息", line 27, in __init__
BankAccount.__init__(self)
TypeError: __init__() takes exactly 3 arguments (1 given)
可我如果把YQaccount=InterestAccount(0.03)改成YQaccount=InterestAccount(‘YQ’,'18695997416',0.03)
报错又变成了
Traceback (most recent call last):
File "E:/python2.5/作业文件/银行账户问题+利息", line 39, in <module>
YQaccount=InterestAccount('YQ','18695997416',0.03)
TypeError: __init__() takes exactly 2 arguments (4 given)
我他吗明明只加了两个参数在里边,结果第二次出错的时候竟然变成了4个参数,而且前面变成了需要2个参数,这他妈在逗我啊!!!!!! 展开
Traceback (most recent call last):
File "E:/python2.5/作业文件/银行账户问题+利息", line 39, in <module>
YQaccount=InterestAccount(0.03)
File "E:/python2.5/作业文件/银行账户问题+利息", line 27, in __init__
BankAccount.__init__(self)
TypeError: __init__() takes exactly 3 arguments (1 given)
可我如果把YQaccount=InterestAccount(0.03)改成YQaccount=InterestAccount(‘YQ’,'18695997416',0.03)
报错又变成了
Traceback (most recent call last):
File "E:/python2.5/作业文件/银行账户问题+利息", line 39, in <module>
YQaccount=InterestAccount('YQ','18695997416',0.03)
TypeError: __init__() takes exactly 2 arguments (4 given)
我他吗明明只加了两个参数在里边,结果第二次出错的时候竟然变成了4个参数,而且前面变成了需要2个参数,这他妈在逗我啊!!!!!! 展开
1个回答
展开全部
BankAccount.__init__(self)
TypeError: __init__() takes exactly 3 arguments (1 given)
这里已经提示错误了啊。BankAccount类的__init__函数需要3个参数,而你只传了1个参数。
错误在你的InterestAccount类的__init__函数里,
BankAccount.__init__(self)这一句少了2个参数,你倒是传给他。
比如BankAccount.__init__(self,'name','account')
函数的定义里,定义了几个参数,调用的时候就要几个参数的。
TypeError: __init__() takes exactly 3 arguments (1 given)
这里已经提示错误了啊。BankAccount类的__init__函数需要3个参数,而你只传了1个参数。
错误在你的InterestAccount类的__init__函数里,
BankAccount.__init__(self)这一句少了2个参数,你倒是传给他。
比如BankAccount.__init__(self,'name','account')
函数的定义里,定义了几个参数,调用的时候就要几个参数的。
追问
好了 我发现问题了 谢谢你啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询