vertSideLen=45 # length of vertical sides horSideLen=100 # length of horizontal sides
crush.right(90) crush.forward(vertSideLen/2) crush.left(180) # Turn around crush.forward(vertSideLen)
import turtle # Allows us to use turtles wn = turtle.Screen() # Creates a playground for turtles
crush.forward(horSideLen)
crush.forward(vertSideLen) crush.left(180) # Turn around
wn.exitonclick() # Close the window when the user clicks on the exit button
crush = turtle.Turtle() # Create a turtle, assign to crush (from Finding Nemo)
crush.forward(vertSideLen/2)
crush.left(90)