Skip to content

Instantly share code, notes, and snippets.

@daxxog
Created December 9, 2019 01:36
Show Gist options
  • Save daxxog/49eacdbc46939ff4b7e4eea8cec81a16 to your computer and use it in GitHub Desktop.
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.
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