Commit cb11d2d6 by BellCodeEditor

save project

parent 6e0ad26f
Showing with 15 additions and 10 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
#导入模块 #导入模块
pen=turtle.Pen() import turtle
pen.color("blue")
#准备画笔 #准备画笔
pen.write("好\n\n点",font=("Times",30,"normal")) pen_b=turtle.Pen()
#写字 pen_b.color("red")
pen.hideturtle() #画圆
turtle.done() pen_b.left(45)
#固定画布 pen_b.forward(100)
\ No newline at end of file pen_b.circle(50,180)
pen_b.right(90)
pen_b.circle(50,180)
pen_b.forward(100)
#隐藏画笔
pen_b.hideturtle()
#固定画布
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