« Programmation Python/Instructions répétitives » : différence entre les versions

Contenu supprimé Contenu ajouté
Ligne 132 :
>>> a, b, c = 1, 1, 1
>>> while c < 11 :
... print b, # print ( b , end=" " ) avec python3
... a, b, c = b, a+b, c+1
</pre>