Réponse

{}

Colonne
Explication

fruits = {"name": "Pomme", "color": "Rouge"}
for key, value in fruits.items():
print(f"{key} : {value}")

print(fruits.get("name"))

Question

Caractères pour créer un dictionnaire ?

Thématique