Forum Python

Fil d’Ariane du forum – Vous êtes ici :ForumLangage Python: Langage PythonJe rencontre un pb d'IndentationE …
Please or S’enregistrer to create posts and topics.

Je rencontre un pb d'IndentationError!

Bonjour,
"Je reçois une erreur IndentationError: expected an indented block. Quelqu'un peut-il m'aider ?"

Bonjour florealvin,

Il vaut mieux la prochaine fois donner votre code ici pour voir ton problème!

Python utilise des indentations pour structurer le code. Chaque bloc (comme ceux après if, for, ou while) doit être indenté correctement.
L'erreur survient lorsque :
Une ligne attendue dans un bloc est mal alignée.
Des espaces et des tabulations sont mélangés.

Pour résoudre votre problème:
Vérifiez les indentations :
Chaque bloc doit être indenté de manière cohérente avec espaces ou tabulations, pas les deux.

Exemple :

if True:
    print("Indentation correcte") # Indenté

Configurez votre éditeur de texte :
Activez les symboles de mise en évidence des espaces/tabulations.
Préférez 4 espaces pour une indentation standard en Python.