Commit 5cc7d640 by BellCodeEditor

save project

parent 5f978ebe
Showing with 2 additions and 4 deletions
import turtle import turtle
pen=mport turtle pen=turtle.Pen()
screen=turtle.Screen() screen=turtle.Screen()
screen.bgcolor("black") screen.bgcolor("black")
clocks=["red","orange","yollow","green"] clocks=["red","orange","yellow","green"]
for i in range(1,3000): for i in range(1,3000):
pen.forward(i) pen.forward(i)
pen.pencolor(clocks[i%4]) pen.pencolor(clocks[i%4])
pen.right (91) pen.right (91)
pen.hideturtle()
turtle.done() turtle.done()
\ No newline at end of file
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