Created
March 14, 2020 06:31
-
-
Save Hayyhayy/8bcd10329e0b42754ad59f420ef8a2d5 to your computer and use it in GitHub Desktop.
[while] statement #while #loops
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| n = 5 | |
| while n > 0: | |
| print(n) | |
| n = n - 1 | |
| print('Blastoff!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment