Commit 7662c3e5 by BellCodeEditor

save project

parent 8034b06d
Showing with 12 additions and 16 deletions
import turtle
import turtle
import turtle
screen=turtle.Screen()
screen.bgcolor("pink")
pen1=turle.Pen()
pen1.penup()
pen1.goto(100,-100)
pen1.write("祝你生日快乐!!!",font=("Times",15,"normal"))
pen1.hideturtle()
pen=turtle.Pen()
pen.penup()
pen.goto(-100,100)
pen.write("祝你生日快乐!!!!!!!!!",font=("Times",10,"normal"))
pen.pensize(5)
pen.pencolor("red")
pen.hideturtle()
turtle.done()
pen2=turtle.Pen()
pen2.pendown()
pen2.left(45)
pen2.forward(100)
pen2.circle(50,180)
pen2.right(90)
pen2.circle(50,180)
pen.left(45)
pen.forward(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(100)
pen.hideturtle()
turtle.done()
\ No newline at end of file
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