python语言的保留字有哪些
时间: 2023-09-04 14:15:39 浏览: 95
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编程语言中预先设置好的,不能用于定义变量名或函数名等标识符。
阅读全文