Commit fe9f58d5 by BellCodeEditor

save project

parent e99fbbf6
Showing with 4 additions and 0 deletions
import turtle import turtle
Pen=turtle.Pen() Pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("black")
colors=["green","red","orange","yellow"]
for i in range(1,300): for i in range(1,300):
Pen.pencolor(colors[i%4])
Pen.forward(i) Pen.forward(i)
Pen.right(99) Pen.right(99)
Pen.hideturtle() Pen.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