Say, I have a dictionary of data and their variable names, e.g.
dct = {'a': 1, 'b': 2, 'c':3}
and I want to retrieve the values associated with a subset of keys. How can I do this without coding too much, i.e. extracting the variables one-by-one? Is there something like
a, c = dct['a','c']