Commit 90c632e5 by BellCodeEditor

save project

parent 83bfd1e7
Showing with 11 additions and 3 deletions
...@@ -3,11 +3,18 @@ ...@@ -3,11 +3,18 @@
""" """
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.fillcolor("blue") pen.speed(100)
pen.shape("circle")
pen.color("red")
pen.fillcolor("yellow")
pen.begin_fill() pen.begin_fill()
for i in range(5): for i in range(36):
pen.fd(200) pen.fd(200)
pen.rt(144) pen.rt(170)
pen.end_fill() pen.end_fill()
pen.hideturtle() pen.hideturtle()
wait(5)
pen.showturtle()
goto(100,100)
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