I have a list of empty lists as such:
some_lists = [[]] * 3
[[], [], []]
I want to append an integer to the first sublist:
some_lists[0].append(1)
But it appends the integer 1 to all the sublists and generates:
[[1], [1], [1]]
How do I append elements individually to the sublists?