解决:TypeError: 'list' object is not callable
程序员文章站
2024-02-12 17:23:46
...
如果list变量和list函数重名,会有什么后果呢?我们可以参考如下代码:
list = ['泡芙', '汤圆', '鱼儿', '骆驼']
tup_1 = (1, 2, 3, 4, 5)
tupToList = list(tup_1)
print(tupToList)
代码运行后出错了,出错原因是TypeError: 'list' object is not callable
Traceback (most recent call last):
File "D:/python_workshop/python6/lesson3_list.py", line 6, in <module>
tupToList = list(tup_1)
TypeError: 'list' object is not callable
callable()是python的内置函数,用来检查对象是否可被调用,可被调用指的是对象能否使用()括号的方法调用
在如上代码中,由于变量list和函数list重名了,所以函数在使用list函数时,发现list是一个定义好的列表,而列表是不能被调用的,因此抛出一个类型错误
解决办法:我们只需修改变量名list就可以了:
list_1 = ['泡芙', '汤圆', '鱼儿', '骆驼']
tup_1 = (1, 2, 3, 4, 5)
tupToList = list(tup_1)
print(tupToList)
运行后和结果是正常的:
[1, 2, 3, 4, 5]
因此,在命名变量时要注意,应避免和python的函数名、关键字冲突。
推荐阅读
-
装饰器 TypeError: 'NoneType' object is not callable
-
解决:TypeError: 'list' object is not callable
-
报错:TypeError: 'NoneType' object is not callable问题解决
-
Debug3:使用DataFrame时报错TypeError: 'NoneType' object is not callable
-
TypeError: 'NoneType' object is not callable--python报错
-
U-Net运行报错merge6 = merge([drop4,up6], mode = 'concat'...) TypeError: 'module' object is not callable
-
【文件处理】——字典写入json文件或TXT文件,读取文件中的字典&TypeError: Object of type ‘ndarray‘ is not JSON serializable错误解决方法
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
TypeError: POST data should be bytes, an iterable of bytes, or a file object.制作有道翻译小翻译软件的问题解决方法
-
解决报错:TypeError: argument should be integer or bytes-like object, not ‘str‘