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

//img.mukewang.com/szimg/6382f1020998f96304120160.jpg重新进入解释器就可以了。。

0
0

Python3.8系统入门+进阶 (程序员必备第二语言)

语法精讲/配套练习+思考题/原生爬虫实战

14447 学习 · 4438 问题

查看课程