Answers for "check if any value of dictionary is false in python"

1

python check if all dictionary values are False

if all(value == True for value in your_dict.values()) == True:
  #DO SOMETHING
Posted by: Guest on July-24-2020
0

python check if false in dict

a_dictionary = {"a": 1, "b": 2}
contains_1 = 1 in a_dictionary.values()
print(contains_1)
Posted by: Guest on December-07-2020

Code answers related to "check if any value of dictionary is false in python"

Python Answers by Framework

Browse Popular Code Answers by Language