beginner to python here。Python:合併嵌套列表
我有,我想合併2名嵌套列表:
list1 = ['a',
(b, c),
(d, e),
(f, g, h) ]
list2 = [(p,q),
(r, s),
(t),
(u, v, w) ]
我找的輸出是:
list3 = [(a, p, q),
(b, c, r, s),
(d, e, t),
(f, g, h, u, v, w) ]
可這沒有任何外部庫做什麼? 注:LEN(列表1)= LEN(列表2)的
* beginner to python here。* - 這意味着您應該閱讀[教程](http://docs.python.org/tutorial/)。 –
嗨。我已經閱讀了內容。我知道如何合併簡單列表。但不知道如何處理嵌套列表。 –
另外,'list1'的第一個元素是你的例子中的一個字符串,但合併後它似乎是一個對象。 –