0 10 20 30 40 50 60 70 80 90 100 98122 0
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
You are not logged in
`¬
1!
2"
3£
4$
5%
6^
7&
8*
9(
0)
-_
=+
TAB
Q
W
E
R
T
Y
U
I
O
P
[{
]}
ENTER
CAPS
A
S
D
F
G
H
J
K
L
;:
'@
#~
ENTER
SHIFT
\|
Z
X
C
V
B
N
M
,<
.>
/?
SHIFT
 
SPACE
 
0 WPM
0%
0s
0%