Commit 13d250d8 by BellCodeEditor

save project

parent 17ad62cf
Showing with 4 additions and 7 deletions
import turtle import turtle as t
pen=turtle.Pen()
pen.speed(0) pen.speed(0)
Aolean=1
for i in range(300): for i in range(300):
pen.forward(Aolean) t.forward(i)
pen.right(91) t.right(91)
Aolean+=1
turtle.done() 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