Python dictionary comprehension

Here is an example on how to implement dictionary comprehension in Python:

keys = ["a","b","c"]
vals = [1,2,3]

d = {keys[i]:vals[i] for i in range(len(keys))}