Repeating elements in list comprehension

前端 未结 7 2270
走了就别回头了
走了就别回头了 2020-12-11 01:49

I have this list comprehension:

[[x,x] for x in range(3)]

which results in this list:

[[0, 0], [1, 1], [2, 2]]
7条回答
提交回复
热议问题