#Two lists keys = ["Foo", "Bar", "Done"] values = [1, 6, 9] d = dict(zip(keys, values)) d >>>{'Foo': 1, 'Bar': 6, 'Done': 9}