作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下列表:
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/
我是一名优秀的程序员,十分优秀!