itch.io is community of indie game creators and players

Devlogs

While Loops

Programming Progress Log
A downloadable game

a=3

while a<10:

  print(a)

  a += 3

3 6 9

a=1

while a<10:

  print(a)

  a += 3

1 4 7
Leave a comment