from
turtle
import
*
speed(
9
)
pensize(
2
bgcolor(
"black"
colors
=
[
"red"
,
"yellow"
"purple"
"blue"
]
for
x
in
range
(
400
):
forward(
x)
color(colors[x
%
4
])
left(
91
mainloop()
getchar()