python 保留字
时间: 2023-06-22 18:22:04 浏览: 109
python 字符串只保留汉字的方法
Python 有以下保留字(也称关键字):
```
and, as, assert, break, class, continue, def, del, elif, else, except, False, finally, for, from, global, if, import, in, is, lambda, None, nonlocal, not, or, pass, raise, return, True, try, while, with, yield
```
这些保留字在 Python 中有特殊用途,因此不能用作标识符名称。
阅读全文