I created this one,
n,m = 3, 3
Matrix = [[0 for x in range(n)] for y in range(m)]
print (Matrix)
But I want the matrix to be more visual like a current one, every "list" behind each other
[2, 3, 4, 5, 6, 7]
[3, 4, 5, 6, 7, 8]
[4, 5, 6, 7, 8, 9]
[5, 6, 7, 8, 9, 10]
[6, 7, 8, 9, 10, 11]
[7, 8, 9, 10, 11, 12]
I'd like to use iterations like "for" to create it because it will be more easy to solve my problem.