I am curious about a thing:
I have a dict, for example with a car as key and a value regarding its speed. Now, I want to find the key with the lowest value.
This would do you can compare the key's value to the min of the values
worst = [i for i in car_dict if car_dict[i] == min(car_dict.values())]