values of dictionary python code example
Example 1: printing python dictionary values
#print keys and values from the dictionary
for k, v in dic.items():
print(k, v)
Example 2: if dict.values <= int
all(value == 0 for value in your_dict.values())