sortie python pour la boucle

# python 3

for x in range(1, 10):
    print(x)
    if x == 4:
        break
# prints 1 to 4
Exuberant Eland