TonyATTA
5 years ago
[汗] [python] append()與extend()的差別 @ 恩比柿 :: 痞客邦 :: extend vs append, 現在才知道, 之前只會用append...
latest #7
阿爾法傳說
5 years ago
通常是踩到雷就會知道差別
阿爾法傳說
5 years ago
你一定是沒有雷區探險家的精神
TonyATTA
5 years ago
我是看到別人的code才知道原來有extend
立即下載
LinmonJ
5 years ago
list.append(x)
Add an item to the end of the list. Equivalent to a[len(a):] = [x].

list.extend(iterable)
Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable.
LinmonJ
5 years ago
套一句別的大神講的話,寫文章要查字典,但是我們寫程式都沒先翻文件XD
TonyATTA
5 years ago
真的
以前還笨笨的去loop list 然後加進結尾
實際上只要extend 結案
TonyATTA
5 years ago
大概就是拿到錘子可以用就直接上的fu
back to top