
In this challenge we will create a randomised Christmas cards using Python Turtle. Our card will includes 20 snowflakes or random sizes, colours and number of branches, randomly positioned on the canvas. We will also add some Christmas Greetings to…
Python Turtle? Let’s Recap! Looking at the following code can you explain the purpose of each Python Turtle instructions: turtle.color(“red”) turtle.forward(100) turtle.right(90) turtle.left(45) turtle.penup() turtle.pendown() turtle.goto(0,0) turtle.circle(50) turtle.setHeading(45) (X,Y) Coordinates? The canvas we are drawing on (using Python Turtle) is…