Where goes wrong in this list manipulation?

前端 未结 2 1743
感情败类
感情败类 2021-01-20 15:52

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         


        
2条回答
提交回复
热议问题