num_list = [] for i in range(25): num_list.append([0] * 15) #num_list=[[0]*15]*25 num_list[0][0] = 1 print(num_list)