Name = ['a', 'b', 'c']Value = [3, 6, 7]List = [{'name': t[0], 'value': t[1]} for t in zip(Name, Value)]print(List)