gpt4 book ai didi

python - 如何基于python中的另一个列表构建分组项目列表?

转载 作者:太空宇宙 更新时间:2023-11-04 07:24:02 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
iterate through pairs of items in python list

我有一个列表,我想创建另一个列表,它将包含第一个基于滑动窗口参数和每组大小的项目的后续组。即如果参数:

a = ["a" ,"b" ,"c" ,"d" ,"e" ,"f"]

和滑动窗口=1 和大小=2然后我想要 b 作为:

b= [(a,b),(b,c),(c,d),(d,e),(e,f)]

滑动窗口用于决定下一个元组的索引。每次列表将被 1 遍历。即:如果滑动窗口为 2,那么我将有: b= [(a,b),(c,d),(e,f)]

我正在寻找实现这一目标的 pythonic 方式。

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