While Loops
Programming Progress Log » Devlog
a=3
while a<10:
print(a)
a += 3
3 6 9
a=1
while a<10:
print(a)
a += 3
1 4 7
Programming Progress Log
More posts
- List FunctionsNov 14, 2022
- Python Classes/ObjectsOct 24, 2022
- LoopsOct 16, 2022
- ListsOct 16, 2022
- Short Circuit PracticeOct 16, 2022
- Using VariablesOct 15, 2022
- Converting degrees to farenheitOct 15, 2022
- First CodeOct 15, 2022
Leave a comment
Log in with itch.io to leave a comment.