I wonder if there\'s a possibility to create a two dimensional array and to quickly access any horizontal or vertical sub array in it?
I believe we can access a hor
Here is the simple version
#one a = [[0]*10]*10 #two row, col = 10, 10 a = [[0]*row]*col