Commit a7b9085e by BellCodeEditor

save project

parent dc73e200
Showing with 7 additions and 2 deletions
import turtle as t
t.speed(100)
for i in range(1,300):
s=t.Screen()
s.bgcolor("black")
t.tracer(False)
color=["red","blue","black","yellow"]
for i in range(1,3001):
t.pencolor(color[i%4])
t.forward(i)
t.right(91)
t.hideturtle()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment