TypeError: 'int' object is not callable
来源:5-3 值类型与引用类型
慕无忌5495311
2022-11-27
category=1 #没有使用type作为变量名
print(type(category)) #调用type()方法
Traceback (most recent call last):
File “”, line 1, in
TypeError: ‘int’ object is not callable #为啥还报这个错
category=1
type(category)
<class ‘int’>print(type(category))
<class ‘int’>
重新进入解释器就可以了。。。
写回答
1回答
-
慕无忌5495311
提问者
2022-11-27
重新进入解释器就可以了。。
00
相似问题