Is there a way in python to turn a set of lists into a dictionary, where the name of the list is the key and the values are the values? Can you do this with dictionary comprehension?
one = ['a', 'b', 'c']
two = ['d','e','f']
would become
dictionary = {"one" : ['a', 'b', 'c'], "two":['d','e','f'] }