¥
Size: a a a
¥
g
¥
s
s
AP
AP
¥
#
AP
#
s
s
import turtle
colors=['red', 'purple', 'blue', 'green', 'yellow', 'orange']
t=turtle.Pen()
turtle.bgcolor('black')
for x in range(360):
t.pencolor(colors[x%6])
t.width(x/100+1)
t.forward(x)
t.left(59)
s
¥
¥
s
¥
s
¥
input("Press Enter to continue...")