Commit 1db80f43 by BellCodeEditor

save project

parent 654bc3ba
Showing with 27 additions and 0 deletions
import turtle
s=turtle.Screen()
s.bgcolor("light blue")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("你好呀,\nxrn",font=("Times",30,"normal"))
pen.hideturtle()
p1 = turtle.Pen()
p1.pencolor("red")
p1.pensize(15)
p1.left(45)
p1.forward(118)
p1.circle(60,180)
p1.right(90)
p1.circle(60,180)
p1.forward(118)
p1.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