少年白马入江湖 发表于 2021-7-1 16:14:27

BIF不能做变量吗

本帖最后由 少年白马入江湖 于 2021-7-1 17:06 编辑

>>> input = "I love FishC.com"
>>> print(input)
I love FishC.com
>>> x = "I love FishC.com"
>>> print(x)
I love FishC.com
>>> input = "I love FishC.com"
>>> print(input)
I love FishC.com
>>> name = input("请输入你的名字:")
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
    name = input("请输入你的名字:")
TypeError: 'str' object is not callable
>>>
第一个input做变量可行啊

逃兵 发表于 2021-7-1 16:18:01

BIF可以

关键字不行

比如break,False,True

hrpzcf 发表于 2021-7-1 16:28:07

BIF名可以做变量名,但后续需要使用相应的BIF时,就会发现它是无效的,比如你input = "I love FishC.com"后,想使用input读取用户输入时:u = input("请输入:")就会报错,只有del input后,input才会恢复原有功能。

灰晨 发表于 2021-7-1 16:35:05

本帖最后由 灰晨 于 2021-7-1 16:37 编辑

你这里的问题是你之前给input赋值了,现在input因为你赋值的关系变成了str类型了,不是内置函数了,所以input()报错了
'str' object is not callable      “str”对象不可调用
所以像这些内置函数最好就是不要拿来赋值,虽然你赋值的时候没报错,可之后却调用不了相应的内置函数了
print(type(input))
input = '2333'
print(type(input))

拿我那八倍镜来 发表于 2021-7-1 16:43:44

能吧,把内置函数赋值给某个变量就可以了,像让一个x等于True那不也是当变量了吗

超级玛尼哄 发表于 2021-7-1 23:43:39

{:10_254:}{:10_254:}
页: [1]
查看完整版本: BIF不能做变量吗