How to merge lists into a list of tuples?

后端 未结 8 2038
你的背包
你的背包 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 22:54

    The output which you showed in problem statement is not the tuple but list

    list_c = [(1,5), (2,6), (3,7), (4,8)]
    

    check for

    type(list_c)
    

    considering you want the result as tuple out of list_a and list_b, do

    tuple(zip(list_a,list_b)) 
    

提交回复
热议问题