Commit 1bd55175 by BellCodeEditor

save project

parent a8837a2e
Showing with 60 additions and 0 deletions
import turtle
#背景颜色
screen=turtle.Screen()
screen.bgcolor("light pink")
#写字
pen1=turtle.Pen()
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("亲爱的妈妈:\n祝您48岁生日快乐!!!\n我爱您哦~\n——您的宝贝 ",font=("Times",16,"normal"))
pen.hideturtle()
# #画爱心
pen1.pencolor("red")
pen1.pensize(5)
pen1.fillcolor("red")
pen1.begin_fill()
pen1.left(45)
pen1.forward(100)
pen1.circle(50,180)
pen1.right(90)
pen1.circle(50, 180)
pen1.forward(100)
pen1.end_fill()
pen1.hideturtle()
#draw some balloons
pen2=turtle.Pen()
pen2.pencolor("black")
pen2.pensize(5)
pen2.penup()
pen2.goto(-170,70)
pen2.fillcolor("light blue")
pen2.begin_fill()
pen2.pendown()
pen2.circle(25)
pen2.end_fill()
pen2.right(90)
pen2.forward(100)
pen2.hideturtle()
#balloon2
pen3=turtle.Pen()
pen3.pencolor("black")
pen3.pensize(5)
pen3.penup()
pen3.goto(-120,70)
pen3.fillcolor("yellow")
pen3.begin_fill()
pen3.pendown()
pen3.circle(25)
pen3.end_fill()
pen3.right(90)
pen3.forward(100)
pen3.hideturtle()
#zhufuyu
pen4=turtle.Pen()
pen4.penup()
pen4.goto(-380,-160)
pen4.color("purple")
pen4.write("生日快乐!!! ",font=("Times",50,"normal"))
pen4.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