
xxxxxxxxxx
# Python Turtle Shapes - www.101computing.net/python-shapes
import turtle
myPen = turtle.Turtle()
myPen.shape("arrow")
myPen.color("red")
myPen.delay(5) #Set the speed of the turtle
myPen.pensize(2)
myPen.penup()
myPen.goto(0,0)
myPen.pendown()
for i in range(1,5): #Remember in Python, to go from 1 to 4 you have to use range(1,5)!
myPen.forward(100)
myPen.left(90)
task_alt