python check if all values in dictionary are equal code example
Example 1: python check if all dictionary values are False
if all(value == True for value in your_dict.values()) == True:
#DO SOMETHING
Example 2: if dict.values <= int
all(value == 0 for value in your_dict.values())