Commit be2f8242 by BellCodeEditor

auto save

parent 0a566bb5
Showing with 39 additions and 995 deletions
import turtle import turtle
#屏幕背景
screen=turtle.Screen()
screen.bgcolor("blue")
#文字
pen=turtle.Pen() pen=turtle.Pen()
pen.write(" 阳光开朗大男孩!\n鸡你太美\n鸡汤来咯!\n",font=("Times",50,"normal")) pen.penup()
pen.goto(200,-100)
pen.write("阳光开朗大男孩!\n鸡你太美!\n鸡汤来咯!\n蓝色妖姬!\n",font=("Times",20,"normal"))
pen.hideturtle() pen.hideturtle()
#爱心
pen1=turtle.Pen()
pen1.color("black")
pen1.left(45)
pen1.forward(100)
pen1.circle(50,180)
pen1.right(90)
pen1.circle(50,180)
pen1.forward(100)
pen1.hideturtle()
turtle.done() turtle.done()
pen=turtle.Pen()
pen.left(45)
pen.forward(20)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(20)
import turtle
#屏幕背景
screen=turtle.Screen()
screen.bgcolor("blue")
#文字
pen=turtle.Pen()
pen.penup()
pen.goto(200,-100)
pen.write("阳光开朗大男孩!\n鸡你太美!\n鸡汤来咯!\n蓝色妖姬!\n",font=("Times",20,"normal"))
pen.hideturtle()
#爱心
pen1=turtle.Pen()
pen1.color("black")
pen1.left(45)
pen1.forward(100)
pen1.circle(50,180)
pen1.right(90)
pen1.circle(50,180)
pen1.forward(100)
pen1.hideturtle()
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