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])
相关文章