Dictionary: Get list of values for list of keys October 8, 2022 by Tarik A list comprehension seems to be a good way to do this: >>> [mydict[x] for x in mykeys] [3, 1]