Created
February 16, 2017 05:41
-
-
Save sweetlearn/c579778effb5db6bee293be3cdad5514 to your computer and use it in GitHub Desktop.
Revisions
-
sweetlearn created this gist
Feb 16, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #import turtle import turtle wn = turtle.Screen() wn.bgcolor("red") tess = turtle.Turtle() tess.shape("turtle") tess.color("blue") tess.penup() # This is new size = 30 for i in range(90): tess.stamp() # Leave an impression on the canvas size = size + 2 # Increase the size on every iteration tess.forward(size) # Move tess along tess.right(50) # ... and turn her wn.mainloop()