Commit c35bd723 by BellCodeEditor

auto save

parent 9acdf46f
Showing with 20 additions and 0 deletions
if a<b:
import turtle
pen = turtle.Pen()
pen.write("111",font=("Times",20,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
import turtle
pen = turtle.Pen() #创建画笔
turtle.setup(1000,900,100,100) #设置画布大小
turtle.speed(150) #画笔速率
#叮当猫的头
turtle.fillcolor("skyblue")
turtle.begin_fill()
turtle.circle(100)
turtle.end_fill()
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