gpt4 book ai didi

python - 如何在python中遍历二维列表

转载 作者:行者123 更新时间:2023-11-28 19:44:03 27 4
gpt4 key购买 nike

我有以下列表:

grid = [[2, 6, 8, 6, 9], [2, 5, 5, 5, 0], [1, 3, 8, 8, 7], [3, 2, 0, 6, 9], [2, 1, 4,5,8], [5, 6, 7, 4, 7]]

我使用了 fowling 循环来遍历每个元素 ->

for i in xrange(len(grid[i])):
for j in xrange(len(grid[j])):
print grid[i][j]
print "\n"

但它不显示最后一行,即 [5,6,7,4,7]

那么,在 python 中遍历二维列表的正确方法是什么?

最佳答案

遍历二维列表的正确方法是

for row in grid:
for item in row:
print item,
print

Python 中的 for 循环,将在每次迭代中选择每个项目。因此,在每次迭代中,从 grid 二维列表中选取一维列表。在内部循环中,一维列表中的单个元素被挑选出来。

如果您使用的是 Python 3.x,请将 print 作为函数使用,而不是像这样作为语句

for row in grid:
for item in row:
print(item, end = " ")
print()

输出

2 6 8 6 9
2 5 5 5 0
1 3 8 8 7
3 2 0 6 9
2 1 4 5 8
5 6 7 4 7

但是,如果您想更改特定索引处的元素,那么您可以这样做

for row_index, row in enumerate(grid):
for col_index, item in enumerate(row):
gird[row_index][col_index] = 1 # Whatever needs to be assigned.

关于python - 如何在python中遍历二维列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23799036/

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