I want to create a list of dictionary in the form
my_var = [{'a': 'jack','b': 120}, {'a':'davis', 'b': 150}]
The two lists that I want to use to create the dictionary
j = ['jack', 'davis'] and d = [120, 150]
I need help in creating the dictionary my_var
, how can I do this ?