
In this challenge we are going to use our coding skills to create some nice colour patterns. We will first look at the code given to create a rainbow effect to understand how it works. We will then adapt this…
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…