Python reshape a list to multidimensional list

后端 未结 3 1081
有刺的猬
有刺的猬 2021-01-06 00:16

I have a list that have different length in each dimension like below:

list1=[[2,3,4],[1],[77,8,27,12],[25,15]]

and I have another list wit

3条回答
  •  生来不讨喜
    2021-01-06 00:33

    Here's a kind of cute way.

    list1 = [[2,3,4],[1],[77,8,27,12],[25,15]]
    list2 = list("abcdefghij")
    
    list2_iterator = iter(list2)
    list2_reshaped = [[next(list2_iterator) for _ in sublist] for sublist in list1]
    
    print(list2_reshaped)
    
    Out: [['a', 'b', 'c'], ['d'], ['e', 'f', 'g', 'h'], ['i', 'j']]
    

    I don't know if it's possible with pure comprehensions.

提交回复
热议问题