Commit 2474d1e6 by BellCodeEditor

save project

parent 0991bbd5
Showing with 21 additions and 0 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("blue")
pen=turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("诺依,\n我会用turtle,\n写字了。",font=("Times",30,"normal"))
pen.hideturtle()
pen11=turtle.Pen()
pen11.pensize(10)
pen11.pencolor("red")
pen11.left(45)
pen11.forward(200)
pen11.circle(100,180)
pen11.right(90)
pen11.circle(100,180)
pen11.forward(200)
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