python技巧——list comprehension vs map

Inside_Zhang發表於2015-11-24
>>>words = 'The quick brown fox jumps over the lazy dog'.split()
>>>stuff = [[w.upper(), w.lower(), len(w)] for w in words]
>>>stuff2 = map([w.upper(), w.lower(), len(w)], words)

兩者可完成相似的功能,在list comprehension所不能使用的場合(比如建立規則過於複雜已致不能通過“for”和“if”完成,或者建立規則會隨著時間動態變化),就需要使用map,反之亦然。(具體的例子,留待以後的總結吧)

相關文章