Learning Objectives
In this challenge we are going to use x and y coordinates to draw shapes on the screen. We will be using the turtle library to draw on the screen.
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:
Challenge #1
Look and test the following code used to draw a “+” shape.
Your task is to tweak this code to draw the following shapes:

Challenge #2
Look and test the following code used to draw a square using the for loop.
Your task is to tweak this code to draw the following shapes:

Extension
Once you have completed all the shapes above you can try this more advanced challenge.

The aim of this challenge is to create a simplified game of Poker Dice using only three dice.
For this challenge we are investigating how barcodes are produced. Though there are different standards to produce barcodes, they all follow a similar approach based on binary code!
Can computers produce artwork? In this challenge we are looking at how to write a piece of code to generate a “pretty” graphic.

Most artillery games are based on the Projectile Motion Formula used to trace the trajectory of a projectile thrown in the air. Due to gravity, its trajectory will be a parabola which shape will vary based on the angle and initial velocity of the projectile.


In this challenge we are going to use Python to draw a music score by positioning notes on the staff.

