gpt4 book ai didi

python - 如何从列表python中提取索引倍数为2的元素

转载 作者:行者123 更新时间:2023-11-28 21:46:40 24 4
gpt4 key购买 nike

我只想得到那些索引是二的倍数的那些

    code=[1,2,4,7,2,6,8]
ncode=[code[i] for i%2==0]

最佳答案

只需使用这种索引方法:

code[::2]

如果你想要奇数索引

code[1::2]

通常,它是这样工作的:

seq = L[start:stop:step]

seq = L[::2] # get every other item, starting with the first
seq = L[1::2] # get every other item, starting with the second

关于python - 如何从列表python中提取索引倍数为2的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37595443/

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