Commit 3862b019 by BellCodeEditor

save project

parent a50ceeec
Showing with 23 additions and 0 deletions
import turtle
len = 100
pen=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("red")
pen.pendown()
pen.pencolor("green")
pen.fillcolor("green")
pen.begin_fill()
pen.left(45)
pen.forward(len*2)
pen.circle(len,180)
pen.right(90)
pen.circle(len,180)
pen.forward(len*2)
pen.end_fill()
pen.penup()
pen.goto(100,-100)
pen.pendown()
pen.write("我不会\n我还是不会",font=("Times",30,"normal"))
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