Skip to content

Instantly share code, notes, and snippets.

@KinoAR
Last active November 15, 2018 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KinoAR/6f195a703f4612ed68ed5cde09b68412 to your computer and use it in GitHub Desktop.
Save KinoAR/6f195a703f4612ed68ed5cde09b68412 to your computer and use it in GitHub Desktop.
An example of a while loop in Python.
# Kino Rose
# Python While Loop example
# Initialize i
i = 0
while i < 6:
# Increment i by 1
i++
print(i) # 1, 2, 3, 4, 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment