I am trying to convert multiple list into dictionary as in below output in python.
defined variables
a = ['23820', '29989']
i = ['hello', 'fdhcsl']
u = ['bye', 'cya']
Expected output: (nested dictionary)
nest = {'23820':{'i' : 'hello', 'u': 'bye' }, '29989':{'i': 'fdhcsl', 'u' : 'cya'}}
Is there is anyway this can by achieved by any means?
Thanks