Created
December 9, 2019 01:36
-
-
Save daxxog/49eacdbc46939ff4b7e4eea8cec81a16 to your computer and use it in GitHub Desktop.
Fix the 5 syntax errors in the code below to print a countdown of the numbers from 10 to 0.
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
counter = 10 | |
while counter >= 0: | |
print(counter) | |
counter = counter - 1 | |
print('David Volm') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment