I want to define a Two-dimensional array without an initalized length like this :
Matrix = [][]
but it does not work.
I tried this, but it is wrong too:
>>Matrix = [5][5]
Matrix = [5][5] # Recall 2nd parameter to zeros is the type
IndexError: list index out of range
What is my mistake?