Forum Python

Fil d’Ariane du forum – Vous êtes ici :ForumLangage Python: Langage Pythonindentation error
Please or S’enregistrer to create posts and topics.

indentation error

Mauvaise indentation
Description du problème :
Le code suivant lève une erreur :

if True:
print("Bonjour")

Erreur : IndentationError: expected an indented block

Bonjour,
l'instruction print(....) doit être à l'intérieur de la structure conditionnelle if:
Ajoutez un espace ou une tabulation pour indenter correctement:

if True:
    print("Bonjour")