Forum Python

Fil d’Ariane du forum – Vous êtes ici :ForumLangage Python: Langage PythonTypeError sur les types incompati …
Please or S’enregistrer to create posts and topics.

TypeError sur les types incompatibles

Je fais l'addition de deux variables, mais j'obtiens TypeError: unsupported operand type(s) for +: 'int' and 'str'. Voici mon code :

a = 5
b = 'hello'
print(a + b)

Pourquoi cela ne fonctionne-t-il pas ?

Bonjour ouven,

Vous ne pouvez pas ajouter directement un int et une str. Convertissez la variable a en str ou b en int selon le résultat attendu. Exemple :

a = 5
b = 'hello'
print(str(a) + b)