Animation2

Download this grid which will help you to plan where the corners of the shapes start.

#Create a line first pair is start of the line x & y

#Second pair is end of the line x & y

blob1=win.create_line(200,200,230,230)

#Create an oval shape

#Create a rectangle and oval forms inside it

#First pair is top left point Second pair is bottom right point

blob2=win.create_oval(150,150,200,200)

#Create a Polygon

#You can have as many pairs of points as you want

blob3=win.create_polygon(0,0,10,10,10,100,120,120,140,100)

#Create a rectangle

#First pair is top left point Second pair is bottom right point

blob4=win.create_rectangle(150,150,200,200)

#Create Text

blob5=win.create_text(200,200, text="fred", font="aerial")

Challenges

Create two ovals one inside the other. Make sure the distance between the two are the same from any part of the shape.

Create a brick pattern using rectangles