Created
September 16, 2020 19:58
-
-
Save calthoff/379e31a5cb7fbbc39e14fa1053d6e7dd to your computer and use it in GitHub Desktop.
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
| x = 10 | |
| while x >= 0: | |
| print(x) | |
| x -= 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#Alternative Solution
i=0
while i in range(0,11):
print(10-i)
i += 1