How to prepend all list elements into another list
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Merge two lists in python?
如何将列表元素预先放入另一个列表中?
1 2 3 4 | A = ['1', '2'] B = ['3', '4'] A.append(B) print A |
收益率
1 | ['1', '2', ['3', '4']] |
我怎么做
1 | ['1', '2', '3', '4']? |
1 | A.extend(B) |
或
1 | A += B |
这篇文章是为了让我发表这个答案而添加的。
例如,在您的案例中,
这也可以作为
1 2 | for s in B: A.append(B) |
当然,