Commit 758f1b16 by BellCodeEditor

auto save

parent 7c9b343c
Showing with 52 additions and 0 deletions
import turtle as t
t.pensize(5)
t.pencolor('brown')
t.penup()
t.goto(-100,-200)
t.pendown()
t.fillcolor('yellow')
t.begin_fill()
t.circle(200)
t.end_fill()
t.penup()
t.goto(-180,50)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(-180,50)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(-20,50)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(-20,50)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(-100,-150)
t.pendown()
t.circle(120,60)
t.circle(120,-120)
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