找到二维矩阵列中的最大值

1
max(row[j] for row in matrix)
1
2
3
4
5
matrix = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]

如果 j = 1(即第二列),等同于 max(2, 5, 8),结果将是 8。