Skip to content

Instantly share code, notes, and snippets.

@m0xb
Created October 4, 2017 22:52
Show Gist options
  • Select an option

  • Save m0xb/79e862d0d42f857004cec71058ccfb67 to your computer and use it in GitHub Desktop.

Select an option

Save m0xb/79e862d0d42f857004cec71058ccfb67 to your computer and use it in GitHub Desktop.
$ cat countdown_iterative.py
def countdown(n):
while n > 0:
print(n)
n -= 1
countdown(5)
$ python3 countdown_iterative.py
5
4
3
2
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment