Python Sprawdź, czy wszystkie wartości słownika są fałszywe

if all(value == True for value in your_dict.values()) == True:
  #DO SOMETHING
zimmer550