>>> variable = input('Quel est votre nom ? ') Quel est votre nom ? Pierre Henry FAGAN >>> type(variable) <class 'str'> >>> print('Bonjour ' + variable) Bonjour Pierre Henry FAGAN