Commit 551bbc4d by BellCodeEditor

auto save

parent 89ea9081
Showing with 6 additions and 5 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen = turtle.Pen()
pen.hideturtle()
pen.write("春眠不觉晓,\n\n",font=("仿宋",10,"normal"))
pen.write("处处闻啼鸟",font=("仿宋",10,"normal"))
import turtle #导入画笔包
pen = turtle.Pen() #画笔的实例化
pen.hideturtle() #隐藏画笔
pen.write("春眠不觉晓,\n\n",font=("楷体",10,"normal")) #font(字体名称,大小,类型)
pen.write("处处闻啼鸟",font=("楷体",10,"normal"))
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