Dictionnaire obtient toutes les valeurs

hh = {"a":3, "b":4, "c":5}

# get all values
print(hh.values())
# dict_values([3, 4, 5])
Sore Sloth