Commit 31b840b0 by BellCodeEditor

save project

parent 72175e85
Showing with 7 additions and 3 deletions
import turtle import turtle
t = turtle.Turtle() #导入海龟拿到画笔 t = turtle.Turtle() #导入海龟拿到画笔
# t.write("你好啊。\n今天天气好冷啊",font=("Times",20,"normal")) screen = turtle.Screen()
# t.hideturtle() screen.bgcolor("light blue")
t.pensize(1000) t.pensize(10)
t.pencolor("red") t.pencolor("red")
t.left(45) t.left(45)
t.forward(100) t.forward(100)
...@@ -10,6 +10,10 @@ t.circle(50,180) ...@@ -10,6 +10,10 @@ t.circle(50,180)
t.right(90) t.right(90)
t.circle(50,180) t.circle(50,180)
t.forward(100) t.forward(100)
t.penup()
t.goto(100,-100)
t.pendown()
t.write("你好啊。\n今天天气好冷啊",font=("Times",20,"normal"))
t.hideturtle() t.hideturtle()
turtle.done() 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