keys = ['a', 'b', 'c'] values = [1, 2, 3] hash = {} for k,v in zip(keys, values): hash[k] = v