1
I have the following code:
matrix = [[0 for x in range(2)] for y in range(10)]
I’m trying to implement this in another language, in which there is no such structure above for matrix creation.
I wonder if there is another way to write this code in Python, or generic way, in C.