How to check if all values of a dictionary are 0 in Python

2 Answers

0 votes
dict = {'a':0, 'b':0, 'c':0}

print(all(value == 0 for value in dict.values()))





'''
run:

True

'''

 



answered Apr 25, 2021 by avibootz
0 votes
dict = {'a':0, 'b':0, 'c':0}

print(not any(dict.values()))





'''
run:

True

'''

 



answered Apr 25, 2021 by avibootz
...