Python 语言参考¶
本参考手册描述了该语言的语法和“核心语义”。在保持简明扼要的同时,力求准确和完整。有关内置对象类型、内置函数、模块的语义在:ref:library-index 中介绍。有关本语言的非正式介绍,请参阅 Python 教程。对于 C 或 C++ 程序员,还提供了两本额外的手册 扩展和嵌入 Python 解释器 描述了如何编写Python扩展模块,而:ref:c-api-index 详细介绍了C/C++程序员可用的接口。
- 1. 概述
- 2. 词法分析
- 3. 数据模型
- 4. 执行模型
- 5. 导入系统
- 6. 表达式
- 6.1. Arithmetic conversions
- 6.2. Atoms
- 6.3. Primaries
- 6.4. Await expression
- 6.5. The power operator
- 6.6. Unary arithmetic and bitwise operations
- 6.7. Binary arithmetic operations
- 6.8. Shifting operations
- 6.9. Binary bitwise operations
- 6.10. Comparisons
- 6.11. Boolean operations
- 6.12. Assignment expressions
- 6.13. Conditional expressions
- 6.14. Lambdas
- 6.15. Expression lists
- 6.16. Evaluation order
- 6.17. Operator precedence
- 7. 简单语句
- 7.1. Expression statements
- 7.2. Assignment statements
- 7.3. The
assert
statement - 7.4. The
pass
statement - 7.5. The
del
statement - 7.6. The
return
statement - 7.7. The
yield
statement - 7.8. The
raise
statement - 7.9. The
break
statement - 7.10. The
continue
statement - 7.11. The
import
statement - 7.12. The
global
statement - 7.13. The
nonlocal
statement
- 8. 符合语句
- 9. 顶级组件
- 10. Full Grammar specification