liste = range(5)          # instruction

for elt in liste:
    # début bloc d'instructions
    print(elt)
    # fin du bloc


    
    
