TypeError: Clock() takes no arguments
作者:互联网
错误:
TypeError: Clock() takes no arguments
可能原因:
1、def __init__(self,name,age):
这里的 __init__
下划线是左右两边各两个,不是一个
2、看是不是把__init__
写成了__int__
总之,这个错误很大可能的原因是__init__
这个部分写错了。仔细核查一下,这种低级错误要多总结,不然代码量多了,很难找出来。
标签:__,TypeError,takes,Clock,no,init,arguments 来源: https://blog.csdn.net/qq_34546589/article/details/102754244