最好的分割方法是什么:
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中的多个元组到两对元组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!