As the question says, I have two lists that look like this:
list1 = ["key1", "key2"]
list2 = ["value1", "value2"]
I would like to create a dictionary like this:
dict1 = {"key1": "value1" , "key2" : "value2"}
Is there are an easy way to do so?