diy1.py 297 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 # 利用write()帮助悟空给诺依回信吧~ #导入turtle模块 import turtle #定义画笔pen pen=turtle.Pen() #写字pen.write(),注意使用换行 pen.write("诺依,你好\n我会用python写字了",font=("Times",30,"normal")) #隐藏画笔 pen.hideturtle() #保存画布 turtle.done()