Commit db70dcc0 by BellCodeEditor

save project

parent 08b98aba
Showing with 3 additions and 7 deletions
import turtle as pen
screen=pen.Screen()
screen.bgcolor("black")
pen.speed(10000)
colors=["red","orange","yellow","green"]
for i in range(1,300):
pen.pencolor(colors[i%4])
for i in range(1,300,1):
pen.pencolor("blue")
pen.fd(i)
pen.right(91)
pen.hideturtle()
pen.right(9999999999999)
pen.done()
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