How to merge lists into a list of tuples?

后端 未结 8 2151
你的背包
你的背包 2020-11-21 22:30

What is the Pythonic approach to achieve the following?

# Original lists:

list_a = [1, 2, 3, 4]
list_b = [5, 6, 7, 8]

# List of tuples from \'list_a\' and          


        
8条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-21 23:02

    You can use map lambda

    a = [2,3,4]
    b = [5,6,7]
    c = map(lambda x,y:(x,y),a,b)
    

    This will also work if there lengths of original lists do not match

提交回复
热议问题