Skip to content

Instantly share code, notes, and snippets.

@joetechem
Created November 2, 2016 21:52
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 joetechem/44b3262a7c6058fb8f59003a0fdadc08 to your computer and use it in GitHub Desktop.
Save joetechem/44b3262a7c6058fb8f59003a0fdadc08 to your computer and use it in GitHub Desktop.
For_Loop_Turtle
for i in range(4):
t.forward(100) # notice the indentation
t.left(90)
# VERSUS
for i in range(4):
t.forward(100) # notice the lack of indentation here
t.left(90)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment