dly.py 234 Bytes Edit 1 2 3 4 5 6 7 8 9 10 #导入模块 import turtle #创建画笔 pen=turtle.Pen() #写字 pen.write("诺依,你好呀, \nturtle模块真好用,\n我会在画布上写字了",font=("times",20,"normal")) #隐藏 pen.hideturtle() #保存 turtle.done()