python中保留字有什么
时间: 2024-03-20 08:42:25 浏览: 66
python保留字有哪些 .pdf
5星 · 资源好评率100%
Python中有35个保留字,它们是:
```
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
```
这些保留字具有特殊的含义,不能被用作标识符(变量、函数名等)。如果尝试使用保留字作为标识符,Python解释器将会引发语法错误。
阅读全文