美文网首页
Python3.8的冰山一大角——PEP569与572

Python3.8的冰山一大角——PEP569与572

作者: 字节的风 | 来源:发表于2019-04-19 21:57 被阅读0次

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

相关文章

网友评论

      本文标题:Python3.8的冰山一大角——PEP569与572

      本文链接:https://www.haomeiwen.com/subject/agqhgqtx.html