当前位置:Gxlcms > Python > Python2.6版本中实现字典推导PEP274(DictComprehensions)

Python2.6版本中实现字典推导PEP274(DictComprehensions)

时间:2021-07-01 10:21:17 帮助过:73人阅读

之前自己也遇到过一次,这段时间在群里也遇到过几次的一个问题
用python2.7写的一段程序,里面用到了字典推导式,但是服务器版本是python2.6,无法运行。

今天查了下关于Dict Comprehensions,在pep274中有明确的说明。

http://legacy.python.org/dev/peps/pep-0274/

代码如下:


Implementation
All implementation details were resolved in the Python 2.7 and 3.0
time-frame.


这个是从2.7之后才加上的。

2.6版本中我们怎么用呢,其实用一个for循环来解决就好了