python内置函数名是python保留字吗
时间: 2023-07-09 20:51:30 浏览: 182
是的,Python内置函数的名称也是Python保留字。这些内置函数是Python语言的一部分,因此它们的名称在任何情况下都不能用作变量名、函数名或其他标识符。以下是Python 3.9版本中的内置函数列表:
```
abs() delattr() hash() memoryview() set()
all() dict() help() min() setattr()
any() dir() hex() next() slice()
ascii() divmod() id() object() sorted()
bin() enumerate() input() oct() staticmethod()
bool() eval() int() open() str()
breakpoint() exec() isinstance() ord() sum()
bytearray() filter() issubclass() pow() super()
bytes() float() iter() print() tuple()
callable() format() len() property() type()
chr() frozenset() list() range() vars()
classmethod() getattr() locals() repr() zip()
compile() globals() map() reversed() __import__()
complex() hasattr() max() round()
```
请注意,虽然Python保留字和内置函数名称不能用作标识符,但是您可以在名称前面或后面添加下划线以避免与它们冲突。例如,您可以使用“my_abs”而不是“abs”作为函数名称。
阅读全文