当前位置:   article > 正文

python for in循环不能遍历的类型,Python错误:列表对象不能用For循环调用

for i in range typeerror: 'list' object is not callable

好的,我有一个类型错误:“list”对象不可调用

它在下面的for循环中(如果type='D')

准确误差如下:Traceback(most recent call last):

file"test.py", line 55 in

main()

File "test.py", line 49, in main

for i in range(len(accountlist())):

TypeError: 'list' object is not callable

我的代码在下面,我试着将每个括号放在括号中,并将列表重命名为不同的名称,总是会遇到相同的错误。

我在这里做错什么了?class BankAccount:

def __init__(self, getbankaccount, inputAmount=0):

self.__balance = inputAmount

self.__numDeposits = 0

self.__numWithdrawals = 0

self.__totalDeposits = 0

self.__totalWithdrawals = 0

self.__getbankaccount=getbankaccount

def getBalance(self):

return self.__balance

def getNumDeposits(self):

return self.__numDeposits

def getNumWithdrawals(self):

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/167171
推荐阅读
相关标签
  

闽ICP备14008679号