Commit b92dc00f by BellCodeEditor

save project

parent a5deffda
Showing with 18 additions and 0 deletions
import turtle
pen = turtle.Pen()
pen.fillcolor("green")
pen.pencolor("pink")
pen.pensize(3)
pen.begin_fill()
for i in range(8):
pen.forward(100)
for i in range(3):
pen.right(90)
pen.forward(30)
pen.penup()
pen.goto(0,0)
pen.right(45)
pen.pendown()
pen.end_fill()
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