Commit 82419141 by BellCodeEditor

save project

parent 6981ffca
Showing with 4 additions and 3 deletions
...@@ -3,11 +3,13 @@ ...@@ -3,11 +3,13 @@
""" """
import turtle import turtle
p = turtle.Pen() p = turtle.Pen()
p.fillcolor("red")
p.begin_fill()
for i in range(5): for i in range(5):
p.forward(100) p.forward(400)
p.right(144) p.right(144)
p.end_fill()
turtle.done() turtle.done()
...@@ -17,4 +19,3 @@ turtle.done() ...@@ -17,4 +19,3 @@ 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