Commit 95875d3b by BellCodeEditor

auto save

parent 2efc2973
Showing with 58 additions and 0 deletions
import turtle as t
t.pensize(5)
t.pencolor("orange")
t.fillcolor("yellow")
t.begin_fill()
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.end_fill()
t.pensize(3)
t.pencolor("brown")
t.fillcolor("white")
t.begin_fill()
t.penup()
t.goto(80,63)
t.pendown()
t.circle(35)
t.end_fill()
t.pencolor("black")
t.fillcolor("black")
t.begin_fill()
t.penup()
t.goto(80,63)
t.pendown()
t.circle(23)
t.end_fill()
t.pensize(3)
t.pencolor("brown")
t.fillcolor("white")
t.begin_fill()
t.penup()
t.goto(-80,63)
t.pendown()
t.circle(35)
t.end_fill()
t.pencolor("black")
t.fillcolor("black")
t.begin_fill()
t.penup()
t.goto(-80,63)
t.pendown()
t.circle(23)
t.end_fill()
t.pencolor("brown")
t.penup()
t.goto(0,-90)
t.pendown()
t.circle(-120,60)
t.circle(-120,-120)
t.hideturtle()
t.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