loop over twodimensional array python

Solutions on MaxInterview for loop over twodimensional array python by the best coders in the world

showing results for - "loop over twodimensional array python"
Giuseppe
09 Apr 2020
1array = [
2  [2, 4, 5, 6],
3  [6, 5, 99],
4  [849, 33, 7, 7]
5]
6
7for i in array:
8	for j in i:
9      	print(j, end=", ")
10        
11# 2, 4, 5, 6, 6, 5, 99, 849, 33, 7, 7,