Forum Python

Fil d’Ariane du forum – Vous êtes ici :ForumLangage Python: Langage PythonSyntaxError avec une boucle infin …
Please or S’enregistrer to create posts and topics.

SyntaxError avec une boucle infinie

Je reçois une SyntaxError avec ce code :

while True
print('Infinite loop')

Pourquoi ?

Il manque le caractère deux points  ":"  à la fin de la ligne while True. La syntaxe correcte est :

while True:
    print('Infinite loop')