Pour stopper/arrêter un code python si une condition n'est pas vérifiée il suffit d'utiliser le module sys avec la commande sys.exit(), example:
>>> import sys
>>> x = 1
>>> for i in range(10):
... x = x + 1
... if x > 7:
... print x
... sys.exit()
...
8
ici on quitte python quand x est strictement plus grand que 7.
Références
Liens | Site |
---|---|
sys | python doc |
How do I abort the execution of a Python script? | stackoverflow |
Terminating a Python script | stackoverflow |