将每个元组与元组列表中的下一个合并
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将每个元组与元组列表中的下一个合并相关的知识,希望对你有一定的参考价值。
我有一个看起来像这样的元组列表:
list = [(a, b), (c, d), (e, f), (g, h)]
我想得到:
list = [(a, b, c, d), (c, d, e, f), (e, f, g, h)]
我相信这很简单,但是很不幸,我被困住了。。
任何帮助将不胜感激。
答案
list = [(a, b), (c, d), (e, f), (g, h)]
length_of_new_list = len(list) - 1
new_list= []
for i in range(length_of_new_list)
new_list.append(list[i] + list[i + 1])
另一答案
尝试使用zip()
:
>>> lst = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')]
>>> [x + y for x, y in zip(lst, lst[1:])]
[('a', 'b', 'c', 'd'), ('c', 'd', 'e', 'f'), ('e', 'f', 'g', 'h')]
以上是关于将每个元组与元组列表中的下一个合并的主要内容,如果未能解决你的问题,请参考以下文章