fork download
  1. x = [[]] * 5
  2. x[0] = 'A'
  3. print(x)
Success #stdin #stdout 0.01s 27656KB
stdin
Standard input is empty
stdout
['A', [], [], [], []]