Commit 96e8b828 by BellCodeEditor

save project

parent e9ae2b9f
Showing with 4 additions and 2 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("black")
colors=["red","orange","blue","green"]
pen=turtle.Pen()
dietance=1
for i in range(1,365):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.left(91)
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