Commit d664b647 by BellCodeEditor

auto save

parent 07858a54
Showing with 21 additions and 0 deletions
import turtle
pen=turtle.Pen()
eg=turtle.Screen()
eg.bgcolor("yellow")
pen.penup()
pen.goto(100,-100)
pen.write("你好呀",font=("Times",30,"normal"))
pen.hideturtle()
len=60
b1=turtle.Pen()
b1.pencolor("blue")
b1.pensize(5)
b1.left(45)
b1.forward(2*len)
b1.circle(len,180)
b1.right(90)
b1.circle(len,180)
b1.forward(2*len)
b1.hideturtle()
turtle.done()
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