import turtle
t = turtle.Turtle()
colors = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']
def draw_rectangle(x, y, width, height, color):
t.goto(x,y)
t.color(color)
t.begin_fill()
t.goto(x + width, y)
t.goto(x + width, y + height)
t.goto(x, y + height)
t.end_fill()
t.speed(0)
draw_rectangle(-200, 0, 400, 200, 'cyan')
t.pu()
t.goto(0, -200)
t.pd()
radius = 200
for c in colors:
t.color(c)
t.begin_fill()
t.circle(radius)
t.end_fill()
radius -= 10
draw_rectangle(-200, -200, 400, 200, 'green')
# Challenge
# 1) Draw the sun
# 2) Draw a path
# 3) Draw a thank you message
Welcome to type with code
Start typing or press to get going!
The create code you'll be racing to type out is all about:
Made with create.withcode.uk
This code was saved on Wednesday 15th Apr 2020 press
here to edit, run or debug it