perso_inconnu = {'Prénom' : 'John', 'Nom' : 'Doe'} print("Prénom" in perso_inconnu) ''' True ''' print("Taille" in perso_inconnu) ''' False '''