Commit bcf0ba78 by BellCodeEditor

save project

parent 794e50f5
Showing with 2 additions and 4 deletions
import turtle import turtle
p = turtle.Pen() p = turtle.Pen()
p.speed(0)
distance = 1
for i in range(300): for i in range(300):
p.forward(distance) p.forward(i)
p.right(91) p.right(91)
distance += 1
p.hideturtle() p.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