gpt4 book ai didi

python - 在列表列表中查找项目的索引

转载 作者:行者123 更新时间:2023-11-28 20:22:00 25 4
gpt4 key购买 nike

如果我有这个列表列表:

[[1,2,3,4],[5,6,7,8,9,10],[11,12,13]]

如何根据给定的值找到子列表本身的索引?

例如:

如果我的值为 2,则返回的索引将为 0

如果我的值为 9,则返回的索引将为 1

如果我的值为 11,则索引将为 2

最佳答案

只需使用 enumerate :

l = [[1,2,3,4],[5,6,7,8,9,10],[11,12,13]]

# e.g.: find the index of the list containing 12
# This returns the first match (i.e. using index 0), if you want all matches
# simply remove the `[0]`
print [i for i, lst in enumerate(l) if 12 in lst][0]

这个输出:

[2]

编辑:

@hlt's评论建议使用以下内容以获得更有效的行为:

next(i for i,v in enumerate(l) if 12 in v)

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

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