Python: Merge list with range list

后端 未结 2 1445
青春惊慌失措
青春惊慌失措 2021-02-19 22:12

I have a list:

L = [\'a\', \'b\']

I need to create a new list by concatenating an original list which ra

2条回答
  •  梦毁少年i
    2021-02-19 22:45

    My solution almost same, but the output is in different order...

    does order matter?

    Here is my solution

    from itertools import product
    L = ['a', 'b']
    k = 4
    L2 = range(1, k+1)
    print [x+ str(y) for x,y in list(product(L,L2))]
    

    output:

    ['a1', 'a2', 'a3', 'a4', 'b1', 'b2', 'b3', 'b4']
    

提交回复
热议问题