Python的保留字和含义
时间: 2023-11-05 22:26:01 浏览: 157
python保留字有哪些 .pdf
5星 · 资源好评率100%
Python的保留字是指被Python编程语言赋予特殊含义的单词,它们在程序中有特殊的用途,不能作为变量名、函数名、类名等标识符使用。Python保留字共有35个,分别是:
```
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
```
其中,True、False、None是Python中的三个特殊常量;其他保留字主要用于控制流程、定义变量、定义函数等语言结构。
阅读全文