Skip to content

Instantly share code, notes, and snippets.

@KinoAR
Created November 15, 2018 19:16
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/ddc62c5b6f7e48b29a09c763e7b09986 to your computer and use it in GitHub Desktop.
Save KinoAR/ddc62c5b6f7e48b29a09c763e7b09986 to your computer and use it in GitHub Desktop.
Here is an example of a for loop in Python.
# Kino Rose
# For Loop Example
for x in range(0, 6):
print(x) # 0, 1, 2, 3, 4, 5,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment