Skip to content

Instantly share code, notes, and snippets.

@Hayyhayy
Created March 14, 2020 06:31
Show Gist options
  • Select an option

  • Save Hayyhayy/8bcd10329e0b42754ad59f420ef8a2d5 to your computer and use it in GitHub Desktop.

Select an option

Save Hayyhayy/8bcd10329e0b42754ad59f420ef8a2d5 to your computer and use it in GitHub Desktop.
[while] statement #while #loops
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