Python3.8研发进度
PEP 569 精粹
版本 | 时间 |
---|---|
3.8 development begins | Monday, 2018-01-29 |
3.8.0 alpha 1 | Sunday, 2019-02-03 |
3.8.0 alpha 2 | Monday, 2019-02-25 |
3.8.0 alpha 3 | Monday, 2019-03-25 |
3.8.0 alpha 4 | Monday, 2019-04-29 |
3.8.0 beta 1 | Monday, 2019-05-27 (在这个版本之后,Python3.8就没有新功能加入了) |
3.8.0 beta 2 | Monday, 2019-06-24 |
3.8.0 beta 3 | Monday, 2019-07-29 |
3.8.0 beta 4 | Monday, 2019-08-26 |
3.8.0 candidate 1 | Monday, 2019-09-30 |
3.8.0 candidate 2 | Monday, 2019-10-07 (如果需要的话) |
3.8.0 final | Monday, 2019-10-21 |
重要新特性:赋值表达式
提取自 PEP 572
Abstract
en-US: This is a proposal for creating a way to assign to variables within an expression using the notation NAME := expr
. A new exception, TargetScopeError
is added, and there is one change to evaluation order.
中文-中国:这是一种创建一种使用符号NAME:=expr
为表达式中的变量赋值的方法的建议。添加了一个新的异常TargetScopeError
,并且对计算顺序进行了一次更改。
更多关于赋值表达式的那些事儿,请关注PEP 572
网友评论