2d list python3 code example
Example: 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])
In a 2 dimensional list, output the 3rd element of the 2nd row.
# remember to account for 0 index
print(variable[1][2])