Commit b1d72d6f by BellCodeEditor

auto save

parent 99ef028e
Showing with 7 additions and 14 deletions
import turtle
pen=turtle.Pen()
pen.write("12345",font=("Times",18,"normal"))
turtle.done()
\ No newline at end of file
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("纵然万劫不复,\n纵然相思入骨,\n我也待你眉眼如初,\n岁月如故",font=("Times",13,"normal"))
pen1=turtle.Pen()
len=60
pen1.pensize(9)
pen1.pencolor("red")
pen1.left(45)
pen1.forward(len*2)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(len*2)
screen.bgcolor("pink")
pen.write("岁月\n如故",font=("Times",13,"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