Commit eef5c48d by BellCodeEditor

save project

parent 530e34f3
Showing with 5 additions and 1 deletions
...@@ -3,10 +3,13 @@ ...@@ -3,10 +3,13 @@
""" """
import turtle as t import turtle as t
t.pendown() t.pendown()
t.pencolor("red")
t.fillcolor("blue")
t.begin_fill()
for i in range(5): for i in range(5):
t.forward(200) t.forward(200)
t.right(144) t.right(144)
t.hideturtle() t.hideturtle()
t.penup() t.penup()
t.pencolor("red") t.end_fill()
t.done() t.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