37,742
社区成员
发帖
与我相关
我的任务
分享
import turtle
s = 5
c = ['red', 'purple', 'green', 'yellow', 'blue']
y = 0
turtle.bgcolor('black')
while True:
for i in range(0, 12):
turtle.pencolor(c[y])
turtle.forward(s)
turtle.left(30)
s += 1
y += 1
if y == 5:
y = 0