Commit 81b66bda by BellCodeEditor

auto save

parent 84874bc3
Showing with 22 additions and 0 deletions
import turtle
pen=turtle.Pen()
#画笔颜色
pen.pensize(5)
pen.pencolor('red')
#爱心
pen.left(45)
pen.forward(200)
pen.circle(100,180)
pen.right(90)
pen.circle(100,180)
pen.forward(200)
#贺卡文字
pen.penup()
pen.goto(200,-140)
pen.write('芝士\n就是力量。',font=('楷体',30,'normal'))
pen.hideturtle()#隐藏画笔
turtle.done()#保存画布
#背景
Screen.bgcolor("blue")
\ 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