How to Create Nested Dictionary in Python with 3 lists

后端 未结 7 2042
广开言路
广开言路 2020-12-03 19:31

Let us Suppose, I have created 3 lists and I want to create a dictionary for it. e.g.

a= [\'A\', \'B\', \'C\', \'D\']
b =[1, 2, 3, 4]
c = [9, 8, 7, 6]
         


        
7条回答
  •  盖世英雄少女心
    2020-12-03 19:59

    You can try this:

    a= ['A', 'B', 'C', 'D']
    b =[1, 2, 3, 4]
    c = [9, 8, 7, 6]
    new_data = dict([[a, dict([map(str, i)])] for a, i in zip(a, zip(b, c))])
    

    Output:

    {'A': {'1': '9'}, 'C': {'3': '7'}, 'B': {'2': '8'}, 'D': {'4': '6'}}
    

    Or

    new_data = dict(zip(a, map(lambda x:dict([x]), zip(map(str, b), map(str, c)))))
    

提交回复
热议问题