在例子中小甲魚起了個 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>", line 1, in <module> print>", line 1, in <module> print("I love FishC ")TypeError: 'int' object is not callable
####