fork download
  1. L2 = [[] for _ in range(10)]
  2. L3= [[]] *10
  3. print(L2)
  4. print(L3)
Success #stdin #stdout 0.02s 9572KB
stdin
Standard input is empty
stdout
[[], [], [], [], [], [], [], [], [], []]
[[], [], [], [], [], [], [], [], [], []]