I have a set of keys, lets say
mykeys = ["I", "II", "III", "IV"]
and a set of values, let's say
myvalues = [1, 2, 3, 4]
I now want to create a dictionary like this
{"I": 1, "II": 2, "III":3, "IV":4}
What is the easy (and, if possible, idiomatic) way to do it in python?