diy1.py
406 Bytes
import turtle
screen=turtle.Screen()
screen.bgcolor("yellow")
screen.textinput("老六你好",'ww')
pen=turtle.Pen()
pen.penup()
pen.goto(-100,0)
pen.write("你好,老六",font=("Times",30,"normal"))
pen.hideturtle()
pen1=turtle.Pen()
len=60
pen1.left(45)
pen1.forward(2*len)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(2*len)
pen1.hideturtle()
turtle.done()