The question is, place exactly 12 zeros at random positions in a 6x6 python matrix, made using for loops. Now I have no idea how to do random integer that can make some random numbers the same... I need help for this
l = []
for i in range(6):
   l.append([])
      for j in range(6):
            l[i].append(???)
print(l)
 
     
     
    