gpt4 book ai didi

python - 嵌套列表 python

转载 作者:太空狗 更新时间:2023-10-29 18:16:12 26 4
gpt4 key购买 nike

谁能告诉我如何在嵌套列表中调用索引?

一般我只写:

for i in range (list)

但是如果我有一个包含如下嵌套列表的列表怎么办:

Nlist = [[2,2,2],[3,3,3],[4,4,4]...]

我想分别查看每个索引?

最佳答案

如果您真的需要索引,您可以对内部列表再次执行您所说的操作:

l = [[2,2,2],[3,3,3],[4,4,4]]
for index1 in xrange(len(l)):
for index2 in xrange(len(l[index1])):
print index1, index2, l[index1][index2]

但是遍历列表本身更像 pythonic:

for inner_l in l:
for item in inner_l:
print item

如果你真的需要索引,你也可以使用 enumerate :

for index1, inner_l in enumerate(l):
for index2, item in enumerate(inner_l):
print index1, index2, item, l[index1][index2]

关于python - 嵌套列表 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8189169/

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