So I would like to make a Python dictionary with the elements of one list as the keys and the list elements of another list as the values, is this possible?
So that:
list1 = ('red', 'blue', 'green', many more strings )
list2 = (1, 2, 3, many more values)
d = { list1[0:]: list2[0:] }
This obviously does not work, but something similar?