Commit 5c104924 by BellCodeEditor

save project

parent 551bbc4d
Showing with 6 additions and 7 deletions
# 利用write()帮助悟空给诺依回信吧~
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
import turtle
pen = turtle.Pen()
pen.hideturtle()
pen.write("春眠不觉晓\n\n",font=("黑体",10,"italic"))
pen.write("处处闻啼鸟",font=("宋体",10,"normal"))
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