Looking at the following code can you explain the purpose of each Python Turtle instruction:
- myPen.color(“red”)
- myPen.forward(100)
- myPen.right(90)
- myPen.left(45)
- myPen.penup()
- myPen.pendown()
- myPen.goto(0,0)
- myPen.circle(50)
X and Y coordinates? Quadrant?

Check the above picture. Can you state three facts about X and Y coordinates and about quadrants?
The canvas we are drawing on (using Python Turtle) is 400 pixels wide by 400 pixels high.
Look at the canvas below to understand how (x,y) coordinates work:
Python Code
Challenge #1: Sequencing
Writing a program that consists of a linear list of instructions written in a specific order is called sequencing.
Your Challenge
Use all of the instructions mentionned above to complete a drawing of your choice.
Challenge #2: Iteration
By using a loop you can repeat a set of instructions many times. This is called iteration.
Check the following challenge to create complex drawing using iteration.
My artwork
My work
https://www.trinket.io/python/1747df0aa6
my work !!!
My work: the impossible triangle
https://www.trinket.io/python/e217c2c6e0
https://www.trinket.io/python/e7c74d0726
My attempt
My work
My code: spaceship