I want to create an empty list (or whatever is the best way) that can hold 10 elements.
After that I want to assign values in that list, for example this is supposed
One simple way to create a 2D matrix of size n using nested list comprehensions:
n
m = [[None for _ in range(n)] for _ in range(n)]