Input: two lists (list1, list2) of equal length
Output: one list (result) of the same length, such that:
result[i] = list1[i] + list2[i]
有沒有簡明的方法可以做到這一點?或者,這是最好的:python:逐行列表總和
# Python 3
assert len(list1) == len(list2)
result = [list1[i] + list2[i] for i in range(len(list1))]
我原本讀爲「毫無意義的明智之舉」。我想我可能需要一些睡眠。 – 2011-04-26 09:47:45