Commit b9b63656 by BellCodeEditor

save project

parent e09d132d
Showing with 8 additions and 6 deletions
import turtle
import as t
pen = turtle.Pen()
turtle.tracer(False)
t.tracer(False)
color = ["pink","dlue","grey","purple"]
for i in range(1,301):
pen.forward(i)
pen.right(91)
pen.hideturtle()
turtle.done()
t.pencolor(color[i/%4])
t.forward(i)
t.right(91)
t.hideturtle()
t.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