I have a dict like below:
s = {1: True, 2: False, 3: False}
I want to find out if there exists any key in the dict with a value of False.
Is there any way to find out without iterating all the keys of the dict?
Basically, I can do something like if 2 in s to find out if a given key exists in the dict.
Is there anything like it for the value of the keys in the dict?