gpt4 book ai didi

python - 将长元组拆分为较小的元组

转载 作者:太空狗 更新时间:2023-10-29 18:05:06 25 4
gpt4 key购买 nike

我有一个很长的元组

(2, 2, 10, 10, 344, 344, 45, 43, 2, 2, 10, 10, 12, 8, 2, 10)

我正试图把它分成一个元组的元组,比如

((2, 2, 10, 10), (344, 344, 45, 43), (2, 2, 10, 10), (12, 8, 2, 10))

我是 python 新手,不太擅长元组 o(2, 2, 10, 10, 344, 344, 45, 43, 2, 2, 10, 10, 12, 8, 2, 10)r列出。我的 friend 说我应该拆分它,但我就是不能接受 -_-

我需要将元组拆分为包含 4 个元素的元组,稍后我将使用矩形通过 PIL 绘制到图像。

最佳答案

好吧,有一个成语:

def grouper(n, iterable):
args = [iter(iterable)] * n
return zip(*args)

t = (2, 2, 10, 10, 344, 344, 45, 43, 2, 2, 10, 10, 12, 8, 2, 10)
print grouper(4, t)

但是解释起来有点复杂。 the itertools receipes 中列出了一个稍微更通用的版本.

你也可以自己对元组进行切片

parts = (t[0:4], t[4:8], t[8:12], t[12:16])

# or as a function
def grouper2(n, lst):
return [t[i:i+n] for i in range(0, len(t), n)]

这可能是你 friend 的意思。

关于python - 将长元组拆分为较小的元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3947337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com