prenom = input("Entrez votre prénom : ") ''' John ''' nom = input("Entrez votre nom : ") ''' SNOW ''' message = print("Bonjour {} {} !".format(prenom, nom)) ''' Bonjour John SNOW ! '''