comment redémarrer la boucle Python
i=2
while i < n:
if something:
do something
i += 1
else:
do something else
i = 2 #restart the loop
Undefined