-6ren">
gpt4 book ai didi

Python:如何将成对扩展到三成?

转载 作者:太空宇宙 更新时间:2023-11-03 18:25:16 25 4
gpt4 key购买 nike

def pairwise(iterable):
"s -> (s0,s1), (s1,s2), (s2, s3), ..."
a, b = tee(iterable)
next(b, None)
return izip(a, b)

考虑到这一点,你会如何得到:

s -> (s0,s1,s2), (s1,s2,s3), (s2,s3,s4), ...

最佳答案

def triwise(iterable):
a, b = tee(iterable)
a, c = tee(iterable)
next(b, None)
next(c, None)
next(c, None)
return izip(a, b, c)

应该做你想做的事。在某些时候,正确概括这一点可能是有意义的,但我将其作为练习留给读者:

>>> list(triwise(xrange(5)))
[(0, 1, 2), (1, 2, 3), (2, 3, 4)]

关于Python:如何将成对扩展到三成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23329450/

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