gpt4 book ai didi

python - 查找列表中第一个正元素的索引 - python

转载 作者:太空宇宙 更新时间:2023-11-03 20:51:26 26 4
gpt4 key购买 nike

我试图找到每个正值序列的起始位置的索引。我只得到了代码中正值的位置。我的代码如下所示:

index = []
for i, x in enumerate(lst):
if x > 0:
index.append(i)
print index

我预计 [-1.1, 2.0, 3.0, 4.0, 5.0, -2.0, -3.0, -4.0, 5.5, 6.6, 7.7, 8.8, 9.9] 的输出为 [1, 8]

最佳答案

我认为如果你使用列表理解会更好

index = [i for i, x in enumerate(lst) if x > 0]

关于python - 查找列表中第一个正元素的索引 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56288820/

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