如何添加一個列表到另一個列表中,我繼續遇到我的for循環遍歷整個列表中的第二個列表的問題。for循環內另一個for循環Python
如果aList
是[1, 2, 3, 4]
,我想輸出1hello, 2good, 3what...
等。
def function(aList):
myList = ['hello','good','what','tree']
newList = []
for element in aList:
for n in myList:
newList.append[element+n]
輸入:
[1, 2, 3, 4]
預期輸出:
['1hello', '2good', '3what', '4tree']
那麼你想得到什麼? –
你確定你不想'首先在myList'中爲''zip''n? –
我想他想要'[a [0],b [0],a [1],b [1] ..]'等 – Dleep