Turtle Challenge 3

Turtle Challenge Three

Save your work as logo3.py

Can you write the code for one of these shapes?

You may need some of these codes to fill a shape in or repeat code in a loop.

p.begin_fill()

p.circle(60)

p.end_fill()

p.begin_fill()

for i in range(4):

p.fd(60)

p.rt(90)

p.end_fill()

#start a fill

#shape

#end fill

#start a fill

#shape using repeat command

#Everything indented underneath is repeated 4x

#end fill

fill a shape with colour video

repeat code video

DEBUG your code if it doesn't work