gpt4 book ai didi

python - `id`是python中的关键字吗?

转载 作者:IT老高 更新时间:2023-10-28 20:37:37 31 4
gpt4 key购买 nike

我的编辑器 (TextMate) 以另一种颜色显示 id(当用作变量名时),而不是我通常的变量名。是关键字吗?我不想遮蔽任何关键字...

最佳答案

id 在 Python 中不是 keyword,而是 built-in function 的名称.

关键字are :

and       del       from      not       while
as elif global or with
assert else if pass yield
break except import print
class exec in raise
continue finally is return
def for lambda try

关键字是无效的变量名。以下将是语法错误:

if = 1

另一方面,像 idtypestr 这样的内置函数可以被隐藏:

str = "hello"    # don't do this

关于python - `id`是python中的关键字吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6350847/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com