Commit b2558794 by BellCodeEditor

save project

parent c102714a
Showing with 15 additions and 4 deletions
import turtle import turtle
pen=turtle.Pen() a = turtle.Turtle()
for i in range(5): a.speed(10)
pen.forward(200) for i in range(180):
pen.left(144) a.forward(100)
a.right(30)
a.forward(100)
a.left(60)
a.forward(100)
a.right(30)
a.penup()
a.setposition(0,0)
a.pendown()
a.right(2)
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