Range à l'infini ou boucle à l'infini

import itertools
for i in itertools.count(start=1):
    if there_is_a_reason_to_break(i):
        break
armin