1. 程式人生 > >[Python] 字典推導 PEP 274 -- Dict Comprehensions

[Python] 字典推導 PEP 274 -- Dict Comprehensions

track data- org popu mil href 說明 gac mod

之前自己也遇到過一次,這段時間在群裏也遇到過幾次的一個問題

用python2.7寫的一段程序。裏面用到了字典推導式,可是server版本號是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循環來解決就好了

#表達式寫法
In [4]: print {i : chr(65+i) for i in range(4)}
{0: 'A', 1: 'B', 2: 'C', 3: 'D'}

#for循環寫法
In [5]: d = {}

In [6]: for i in range(4):
   ...:     d[i] = chr(65+i)
   ...:

In [7]: print d
{0: 'A', 1: 'B', 2: 'C', 3: 'D'}

本文出自 orangleliu筆記本 博客。請務必保留此出處http://blog.csdn.net/orangleliu/article/details/39895669


[Python] 字典推導 PEP 274 -- Dict Comprehensions