Commit cd7624f2 by BellCodeEditor

save project

parent a26ea1bb
Showing with 12 additions and 7 deletions
......@@ -4,19 +4,24 @@ s=turtle.Screen()
s.bgcolor("light pink")
pen = turtle.Pen()
pen.hideturtle()
pen.penup()
pen.goto(150,-100)
pen.write("Thank you!",font=("Times",30,"normal"))
pen.goto(100,-100)
pen.write("Thank you!",font=("Consolas",30,"normal"))
penA = turtle.Pen()
penA.pensize(5)
penA.pensize(9)
penA.penup()
penA.goto(0,-50)
penA.pendown()
penA.pencolor("red")
n = 80
penA.left(45)
penA.fd(100)
penA.circle(50,180)
penA.fd(n*2)
penA.circle(n,180)
penA.right(90)
penA.circle(50,180)
penA.fd(100)
penA.circle(n,180)
penA.fd(n*2)
penA.hideturtle()
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