zmq 发表于 2020-6-18 19:41:11

python 零基础

>>> print = 1
>>> print("I love FishC")
Traceback (most recent call last):
File "<pyshell#37>", line 1, in <module>
    print("I love FishC")
TypeError: 'int' object is not callable

想问下这个报错的原理是啥,是不是print作为内置函数和print作为变量不能同时使用?

青出于蓝 发表于 2020-6-18 19:42:00

是的

青出于蓝 发表于 2020-6-18 19:42:41

print open list 等等等等这种内置函数不能是变量

Twilight6 发表于 2020-6-18 19:43:25

本帖最后由 Twilight6 于 2020-6-18 19:55 编辑



嗯,你重新赋值一个 print 变量会覆盖之前 print 函数的功能 所以不能这样用

所以Python 关键字 内置函数等 都建议不拿去赋值,因为不知道你什么时候要使用那个被赋值的功能~

你可以通过 del print 来删除你不小心赋值的print这样就能恢复功能print 的功能

其他的也一样, 不小心赋值了 int就 del int   不小心赋值了 str就 del str

青出于蓝 发表于 2020-6-18 19:45:30

好强迫症,为啥要用内置函数当变量嘞
页: [1]
查看完整版本: python 零基础