Commit c04a503b by BellCodeEditor

save project

parent 836cba06
Showing with 19 additions and 0 deletions
import turtle
t=turtle.Pen()
t.clear()
t.pencolor("red")
t.speed(0)
t.pensize(0.1)
t.penup()
for j in range(36):
t.home()
t.goto(0,0)
t.right(j*45)
t.fd(200)
t.pendown()
for i in range(80):
t.forward(i)
t.right(91)
t.penup()
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