※ 本文為 nakts0123.bbs. 轉寄自 ptt.cc 更新時間: 2013-05-05 19:12:29
看板 Python
作者 標題 [翻譯] Google 建議的 Python 風格指南 7
時間 Wed May 1 21:46:49 2013
[翻譯] Google 建議的 Python 風格指南 7
原文網址:http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
* list comprehension
在邏輯簡單的情況下可以使用 list comprehension
釋義:
list comprehension 與 generator expression 可以很簡約而有效率的產生 list
及 iterator,而且不需要用到 map(), filter(), lambda 函數。
優點:
List comprehension 比其他產生 list 的技巧要清楚而簡約。Generator 的表示
法效率很高,因為他們避免一次產生整個 list。
缺點:
複雜的 list comprehension 或 generator expression 不易讀懂。
決策:
在邏輯簡單的情況下可以使用它們。每一個組成部份都應在一行內結束,這些組成
部份包括:mapping 敘述、for 子句、filter 敘述。若需要超過一個的 for 子句
或超過一個的 filter 敘述,代表該邏輯已經過於複雜,不應該使用 list
部份包括:mapping 敘述、for 子句、filter 敘述。若需要超過一個的 for 子句
或超過一個的 filter 敘述,代表該邏輯已經過於複雜,不應該使用 list
comprehension 或 generator expression,而應該使用迴圈來完成。
正確的例子 1:
result = []
for x in range(10):
for y in range(5):
if x * y > 10:
result.append((x, y))
錯誤的例子 1:
result = [(x, y) for x in range(10) for y in range(5) if x * y > 10]
正確的例子 2:
for x in xrange(5):
for y in xrange(5):
if x != y:
for z in xrange(5):
if y != z:
yield (x, y, z)
錯誤的例子 2:
return ((x, y, z)
for x in xrange(5)
for y in xrange(5)
if x != y
for z in xrange(5)
if y != z)
其他正確的例子:
return ((x, complicated_transform(x))
for x in long_generator_function(parameter)
if x is not None)
squares = [x * x for x in range(10)]
eat(jelly_bean for jelly_bean in jelly_beans
if jelly_bean.color == 'black')
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 75.102.68.81
推 :清楚!1F 05/01 22:00
推 :有人覺得 list comprehension 違反 There should be one-2F 05/01 23:06
→ :There should be one-- and preferably only one --obvio
→ :--obvious way to do it. 規則嗎? 我覺得現在python 有
→ :太多方法可以去作同一件事。
→ :There should be one-- and preferably only one --obvio
→ :--obvious way to do it. 規則嗎? 我覺得現在python 有
→ :太多方法可以去作同一件事。
→ :list comp 就是那一個obvious way啊...6F 05/02 08:37
--
※ 同主題文章:
● 05-01 21:46 ■ [翻譯] Google 建議的 Python 風格指南 7
05-01 23:28 ■ Re: [翻譯] Google 建議的 Python 風格指南 7
05-03 20:22 ■ Re: [翻譯] Google 建議的 Python 風格指南 7
※ 看板: Gabinius 文章推薦值: 0 目前人氣: 0 累積人氣: 71
作者 sandwichC 的最新發文:
- 請問各位有花旗信用卡但無該行存款的卡友 若需要繳的金額>30萬時,有建議什麼方便的繳費方式嗎? 我過去大多用花旗App輸入他行帳戶直接繳費 但金額>30萬時好像會失敗 我主要的存款在郵局, …85F 24推
- 請問一下,若股利剛破20000, 按規定繳納 2.11% 的稅, 實拿會不會低於股利略低於 20000 的人啊? 按健保署的試算: 若股利所得 20001 元,補充保費422元,故實拿19579元 若 …36F 24推 1噓
- 原文網址: Google Python Style Guide * Generators 有需要時就用 generator 釋義: 一個 generator 函式的回傳值是一個 generator 物 …1F 1推
- 原文網址: Google Python Style Guide * Default Iterators and Operators 若變數的型態支援,應優先使用預設的迭代器 (iterator) 及通 …
- Google 建議的 Python 風格指南 7 原文網址: Google Python Style Guide * list comprehension 在邏輯簡單的情況下可以使用 list com …6F 2推
點此顯示更多發文記錄
→
guest
回列表(←)
分享