Commit e4ba5e88 by BellCodeEditor

save project

parent ec8cbbfc
Showing with 17 additions and 12 deletions
pen.clear()
pen.circle(100,360,720)
pen.penup()
pen.backward(100)
pen.pendown()
pen.circle(30,360)
pen.hideturtle()
turtle.done()
\ No newline at end of file
...@@ -4,15 +4,11 @@ ...@@ -4,15 +4,11 @@
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(20) pen.speed(20)
for i in range(5): pen.pencolor("green")
pen.forward(200) pen.fillcolor("green")
pen.right(144) pen.begin_fill()
pen.clear() for i in range(180):
pen.circle(100,360,720) pen.forward(400)
pen.penup() pen.right(178)
pen.backward(100) pen.end_fill()
pen.pendown()
pen.circle(30,360)
pen.hideturtle()
turtle.done() turtle.done()
\ No newline at end of file
\ 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