Commit 36bc31f1 by BellCodeEditor

save project

parent a74ddc7f
Showing with 5 additions and 2 deletions
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
d=1 colors=["red","orange","yellow","green"]
pen=turtle.Screen()
screen.bgcolor("pink")
pen.speed(100) pen.speed(100)
for i in range(3000): for i in range(3000):
pen.forward(i) pen.forward(colors[i%4])
pen.right(91) pen.right(91)
pen.hideturtle() pen.hideturtle()
pen.done() pen.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