This is fairly straghtforward code and it isn't doing what I want it to do. What is wrong?
In [63]: c = [[]]*10
In [64]: c
Out[64]: [[], [], [], [], [], [], [], [], [], []]
In [65]: c[0]
Out[65]: []
In [66]: c[0] += [1]
In [67]: c
Out[67]: [[1], [1], [1], [1], [1], [1], [1], [1], [1], [1]]
Expected output is [[1], [], [], [], [], [], [], [], [], []]
.