※ 引述《gbllggi (gbllggi)》之銘言:
: 借標題,想問問大家的習慣
: 剛學pyhton不久,想請問大家有什麼建議的習慣要養成呢?
: 例如可以簡化成一行的for loop該盡量寫成一行嗎?
說到這個單行 for loop,我到今年初才知道,有些情況下
單行反而比多行更好讀
舉例來說,如果要找某個 list item 是否符合某個條件︰
found = False
for item in list:
if exp(item):
found = True
break
if found:
# do thing
可以寫成︰
if any(exp(item) for item in list):
# do thing
而且 comprehension 有它自己的 scope,所以不必考慮變數被覆蓋的問題
dict, list, set 配合 comprehension,再加上 any, all, filter, map 函式
幾乎所有單層的 for 都能改成單行
我覺得 python 還可以考慮加上幾個函式
first(iterable, cb) # return first item that cb(item) is True
each(iterable, *cb) # invoke each cb for all items
reduce(cb, *iterable) # invoke cb with previous cb result for all items
: 或是一個function只處理一件事情?
: 還有以前已經寫好的code但有點醜、或亂,會為了維護方便還有容易分享
: 一直去更新它嗎?還是code能跑就好,等到要更新再說?
現在看覺得有點醜或亂,明年再看就完全不知道自己在幹麻了(真實經驗)