Commit 0f19cf25 by BellCodeEditor

save project

parent c04b3326
Showing with 7 additions and 3 deletions
...@@ -6,9 +6,13 @@ pen=turtle.Pen() ...@@ -6,9 +6,13 @@ pen=turtle.Pen()
pen.fillcolor("yellow") pen.fillcolor("yellow")
pen.begin_fill() pen.begin_fill()
pen.shape("turtle") pen.shape("turtle")
for i in range(5):
pen.forward(400) for i in range(360):
pen.right(144) pen.forward(1)
pen.right(1)
for i in range(360):
pen.forward(2)
pen.right(1)
pen.end_fill() pen.end_fill()
turtle.done() turtle.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