fiche = {"Prénom" : "Bruce", "Nom" : "Wayne", "Age" : 45} del(fiche["Age"]) print(fiche) ''' {'Prénom': 'Bruce', 'Nom': 'Wayne'} '''