Commit 59c810d6 by BellCodeEditor

save project

parent ebf0dea1
Showing with 7 additions and 12 deletions
...@@ -3,16 +3,11 @@ ...@@ -3,16 +3,11 @@
""" """
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
for i in range(360): pen.fillcolor("red")
forward() pen.begin_fill()
for i in range(36): for i in range(36):
pen.fillcolor("red") pen.forward(200)
pen.begin_fill() pen.left(170)
for i in range(2): pen.end_fill()
forward(50) pen.hideturtle()
right(100) turtle.done()
forward(100)
right(80)
pen.end_fill()
right(10)
pen.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