Possible Duplicate:
Map two lists into a dictionary in Python
I have 2 lists like this: ['one', 'two', 'three'] and [1, 2, 3]
I want to turn it into a dictionary like this {'one':1, 'two':2, 'three':3}
The catch is that i have to use comprehension. Thanks.