I need to make a list of dictionary from two list. keys of the dictionary is are fixed.
list1 = ['a','b','c']
list2 = [1,2,3]
i need to create a list of dictionary like this,
final_list = [{'name':'a','age':1},{'name':'b','age':2},{'name':'c','age':3}]