Python中的多个元组到两对元组?

Multiple Tuple to Two-Pair Tuple in Python?(Python中的多个元组到两对元组?)

本文介绍了Python中的多个元组到两对元组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

最好的分割方法是什么:

What is the nicest way of splitting this:

tuple = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')

进入这个:

tuples = [('a', 'b'), ('c', 'd'), ('e', 'f'), ('g', 'h')]

假设输入总是有偶数个值.

Assuming that the input always has an even number of values.

推荐答案

zip() 是你的朋友:

t = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h')
zip(t[::2], t[1::2])

这篇关于Python中的多个元组到两对元组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:Python中的多个元组到两对元组?

基础教程推荐