import turtlecolors=['yellow','green','red','white','cyan','blue']t=turtle.Turtle()screen=turtle.Screen()screen.bgcolor('black')t.speedfor i in range(100): t.color(colors[i%6]) t.fd(i*5) t.left(200) t.width(2)
Loading…
No comments:
Post a Comment