Python中保留字
时间: 2024-06-14 10:02:08 浏览: 291
python保留字有哪些 .pdf
5星 · 资源好评率100%
在Python中,保留字是指具有特殊意义,被Python解释器内部使用,不能用作变量名、函数名或类名的单词。这些关键字在语言设计中扮演了特定的角色,赋予了特定的功能。Python的保留字列表包括但不限于:
- `False`
- `None`
- `True`
- `and`
- `as`
- `assert`
- `async`
- `await`
- `break`
- `class`
- `continue`
- `def`
- `del`
- `elif`
- `else`
- `except`
- `finally`
- `for`
- `from`
- `global`
- `if`
- `import`
- `in`
- `is`
- `lambda`
- `nonlocal`
- `not`
- `or`
- `pass`
- `raise`
- `return`
- `try`
- `while`
- `with`
- `yield`
阅读全文