Commit 405c5bc2 by BellCodeEditor

save project

parent a2637952
Showing with 17 additions and 0 deletions
import turtle as t
p = t.Pen()
p.setpos(t.Vec2D(-200,0))
p.pensize(10)
p.color("black")
p.fillcolor("red")
p.begin_fill()
for i in range(5):
p.forward(300)
p.right(144)
p.end_fill()
p.hideturtle()
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