Say I have two lists.
>>> List1 = ['This', 'is', 'a', 'list']
>>> list2 = ['Put', 'this', 'into', 'dictionary']
>>> d = {}
How would I use a loop to make list1 the keys and list2 the values so that each index would store themselves into the dictionary, so as an example...
>>> d = {'This': 'Put', 'is': 'this', 'a': 'into', 'list': 'dictionary'}