I got this question at an interview and I did not know how to solve it then and I am trying to solve it now.
If I have two lists:
l1 = [1, 3, 5, 7, 9]
l2 = [0, 2, 4, 8, 10]
how can I write a dict comprehension that will produce {1:0, 3:2, 5:4, 7:8, 9:10}
?