I am manipulating with the lists in Python.
In [52]: myList = [1,2,3,4,5] In [54]: c=[[]]*10 In [55]: for i, elem1 in enumerate(myList): ....: b = [e
Lists in c are all the same object. You need to do at least:
c
c = [[] for i in xrange(10)]