Browse itch.io
Games
Game assets
Tools
Albums & soundtracks
Physical games
Comics
Books
Bundles
More itch.io
Game Jams
Community
Blog
Devlogs
itch.io
is community of indie game creators and players
See more
Devlogs
While Loops
Programming Progress Log
A downloadable game
Posted
October 24, 2022
by
annajb
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
More posts
List Functions
Python Classes/Objects
Loops
Lists
Short Circuit Practice