I try this code below
lst = [[]] * n
lst[0].append(1)
If i print the cod, the result is
[[1], [1], [1], [1], [1], [1]]
And then I try manual way to make an empty list like below
lst = [[], [], [], [], [], []]
lst[0].append(1)
The result showing up
[[1], [], [], [], [], []]
Is there any differences between lst = [[]] * n
and lst = [[], [], [], [], [], []]
?