id 是 python 中的关键字吗?
我的编辑器 (TextMate) 以与我常用的变量名称不同的颜色(用作变量名称时)显示 id
。是关键字吗?我不想遮蔽任何关键字...
My editor (TextMate) shows id
in another colour (when used as variable name) than my usual variable names. Is it a keyword? I don't want to shade any keyword...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个内置函数:
It's a built in function:
id
不是 Python 中的关键字,但它是 内置函数。关键字是:
关键字是无效的变量名称。以下内容将是语法错误:
另一方面,诸如
id
或type
或str
之类的内置函数可以被隐藏:id
is not a keyword in Python, but it is the name of a built-in function.The keywords are:
Keywords are invalid variable names. The following would be a syntax error:
On the other hand, built-in functions like
id
ortype
orstr
can be shadowed:您还可以从 python 获得帮助:
或者您可以询问 IPython
You can also get help from python:
or alternatively you can question IPython
仅供参考:
检查Python中是否有关键字:
检查所有关键字在Python中:
Just for reference purposes:
Check if something is a keyword in Python:
Check all the keywords in Python: