Commit 22ba514c by BellCodeEditor

auto save

parent 4f15b86e
Showing with 27 additions and 0 deletions
import turtle
screen = turtle.Screen()
screen.bgcolor("wheat")
pen = turtle.Pen()
pen.penup()
pen.goto(100,-100)
pen.write("你们都是\n好孩子~",font = ("华文行楷",30,"bold"))
size = 150
pen.home()
pen.pendown()
pen.pensize(5)
pen.pencolor("red")
pen.left(45)
pen.forward(size*2)
pen.circle(size,180)
pen.right(90)
pen.circle(size,180)
pen.forward(size*2)
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