Commit a63e2d7c by BellCodeEditor

save project

parent d2494d0f
Showing with 6 additions and 3 deletions
import turtle import turtle
pen=turtle.pen() pen=turtle.Pen()
for i in range(300): c=["red","orange","yellow","green"]
pen.forward(i) for p in range(300):
pen.forward(p)
pen.color(c[p%4])
pen.right(91) pen.right(91)
pen.hideturtle() 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