查询python关键字
时间: 2023-07-22 22:14:34 浏览: 104
Python 关键字
Python中的关键字是具有特殊用途的保留字,它们不能作为变量名或标识符使用。以下是Python的关键字列表:
- 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中有特殊的语法和含义,用于构建代码的结构和逻辑。
阅读全文