Commit d629626c by BellCodeEditor

save project

parent 654bc3ba
Showing with 26 additions and 0 deletions
import turtle
t = turtle.Pen()
p = turtle.Screen()
p.bgcolor("pink")
t.fillcolor('red')
t.penup()
t.goto(-150,100)
t.write("陈\n\n安",font = ('Times',15,"normal"))
t.pensize(10)
t.pencolor("red")
t.goto(0,0)
t.pendown()
t.left(45)
t.forward(100)
t.begin_fill()
t.circle(50,180)
t.right(90)
t.circle(50,180)
t.forward(100)
t.end_fill()
t.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