Dictionary from two lists using list comprehension
d = {key : value for (key, value) in zip(keys_list, values_list)}