Commit 4dbe57f9 by BellCodeEditor

save project

parent 654bc3ba
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("自己输入的",font=("Times",30,"normal"))
#画圆
pen1=turtle.Pen()
pen1.circle(50)
#隐藏画笔并保存画布
pen.hideturtle()
pen1.hideturtle()
turtle.done()
\ No newline at end of file
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