在例子中小甲鱼起了个 str 名字的变量,但事实上我们发现,str 的颜色跟普通变量貌似不同?没错,str() 和 print() 都是内置函数,但 Python 貌似不介意我们对内置函数进行赋值操作,所以这点我们以后就要注意啦,否则可能会出现以下的 BUG:>>> 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