
xxxxxxxxxx
#Python Turtle Crenellation Challenge - www.101computing.net/crenellation-challenge/
import turtle
myPen = turtle.Turtle()
myPen.shape("arrow")
myPen.pensize(6)
myPen.speed(5)
myPen.color("purple")
#Bring the pen to the left hand side of the screen
myPen.penup()
myPen.goto(-200,0)
myPen.pendown()
#Draw a horizonal line accross the screen...
myPen.setheading(0)
myPen.forward(400)
myPen.penup()
task_alt