Answer
we can create the required list by using the following code -
List = [[0 for i in range(4)] for i in range(3)]
Work Step by Step
The inner generator [0 for i in range(4)] creates one row containing 4 columns each with value 0 and the outer generator creates a list containing 3 such rows.