Comment choisir une clé aléatoire dans un dictionnaire à Python
random_entry = random.choice(entry_list)
Xanthous Xenomorph
random_entry = random.choice(entry_list)
entry_list = list(a_dict.items())
print(random_entry)
('b', 2)
print(a_dict)
{'a': 1, 'b': 2, 'c': 3}