我想將兩個字符串作爲單個元素附加到Python列表中。這是我的問題的一個簡單的例子:將兩個字符串作爲單個元素附加到Python列表中
lowerCase = [['a', 'b', 'c', 'd', 'e']]
newList = []
# Append two pieces of data as a single element
i = 1;
for letter in lowerCase[0]:
[newList.append(letter), newList.append(i)]
i += 1
print newList
print len(newList)
我能得到什麼:
['a', 1, 'b', 2, 'c', 3, 'd', 4, 'e', 5]
10
我想要什麼:
[['a', 1], ['b', 2], ['c', 3], ['d', 4], ['e', 5]]
5
謝謝,我想我嘗試過不同的是一切。 –