PEP的全称是Python Enhancement Proposals,Python增强提案。描述了Python的语言特性、功能、编程规范等,包括了技术规范和功能的基本原理说明,是了解Python语言的详细指南。
PEP官网:https://www.python.org/dev/peps/
PEP创建于2000年,到目前已经有上千个提案了,下面介绍几个值得仔细阅读了解的提案。
1. PEP 8 - 编码规范
PEP 8 — Style Guide for Python Code:定义了编写 Python 代码的规范和编码原则
2. PEP 257 - 文档注释
PEP 257 — Docstring Conventions
文档注释规范
3. PEP 20 - Python之禅
PEP 20 — The Zen of Python
Python之禅,在Python终端导入this模块查看:
1 | import this |
4. PEP 202 - 列表
PEP 202 — List Comprehensions
列表生成式
5. PEP 274 - 字典
PEP 274 — Dict Comprehensions
字典生成式
6. PEP 234 - 迭代器
7. PEP 279 - enumerate
PEP 279 — The enumerate() built-in function
enumerate枚举函数
8. PEP 282 - 日志
PEP 282 — A Logging System
日志模块
9. PEP 289 - 生成器
PEP 289 — Generator Expressions
生成器表达式
10. PEP 318 - 装饰器
PEP 318 — Decorators for Functions and Methods
装饰器
11. PEP 309 - 偏函数
PEP 309 — Partial Function Application:Python 偏函数
12. PEP 333 - web 服务
PEP 333 — Python Web Server Gateway Interface v1.0:Web开发相关,WSGI协议,描述 web 服务器和 Python web 应用程序\框架之间的标准接口。
PEP 3333 — Python Web Server Gateway Interface v1.0.1:PEP 333的更新版本
13. PEP 343 - with语句
PEP 343 — The “with” Statement
with语句
14. PEP 484 - 类型提示
PEP 484 — Type Hints:Python类型提示(Type Hints),在Python3.5.0中引入,允许开发者指定变量类型。
15. PEP 342 - 协程
PEP 342 — Coroutines via Enhanced Generators:协程和yield
16. PEP 498 - 字符串插值
PEP 498 — Literal String Interpolation
Python3.6新提出的字符串插值方法:1
2
3
4
5
6
7
8import datetime
'Fred' name =
50 age =
1991, 10, 12) anniversary = datetime.date(
f'My name is {name}, my age next year is {age+1}, my anniversary is {anniversary:%A, %B %d, %Y}.'
'My name is Fred, my age next year is 51, my anniversary is Saturday, October 12, 1991.'
f'He said his name is {name!r}.'
"He said his name is 'Fred'."
17. PEP 3101 - 字符串格式化
PEP 3101 — Advanced String Formatting
字符串格式化
本文标题:Python PEP—Python增强提案
文章作者:hiyo
文章链接:https://hiyongz.github.io/posts/Python-Enhancement-Proposals/
许可协议:本博客文章除特别声明外,均采用CC BY-NC-ND 4.0 许可协议。转载请保留原文链接及作者。