using 2d array in python to traverse for loop python code example
Example 1: 2d array python
array = [[value] * lenght] * height
//example
array = [[0] * 5] * 10
print(array)
Example 2: We pass in a 2 dimensional list. You should output the 3rd element of the 2nd row.
In a 2 dimensional list, output the 3rd element of the 2nd row.
# remember to account for 0 index
print(variable[1][2])