python3.8.10有哪些关键字?
时间: 2023-08-13 10:08:20 浏览: 234
Python 3.8.10 中的关键字如下:
```
False, class, finally, is, return, None, continue, for, lambda, try, True, def, from, nonlocal, while, and, del, global, not, with, as, elif, if, or, yield, assert, else, import, pass, break, except, in, raise
```
其中,`False`, `True`, 和 `None` 是 Python 内置的三个常量。
阅读全文