python语言的保留字
时间: 2023-07-12 13:14:11 浏览: 127
python保留字有哪些 .pdf
5星 · 资源好评率100%
Python语言的保留字包括以下:
```
False, None, True, and, as, assert, 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
```
这些保留字在Python中有特殊的含义和用法,不能用作变量名或函数名等标识符。
阅读全文