Commit 7035e332 by BellCodeEditor

save project

parent 1c5776f7
Showing with 3 additions and 1 deletions
...@@ -3,9 +3,11 @@ ...@@ -3,9 +3,11 @@
""" """
import turtle import turtle
p = turtle.Pen() p = turtle.Pen()
p.fillcolor("red")
p.begin_fill()
for x in range(5): for x in range(5):
p.forward(200) p.forward(200)
p.left(-144) p.left(-144)
p.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