Commit d019d240 by BellCodeEditor

auto save

parent 4d8b6805
Showing with 31 additions and 0 deletions
import turtle
t=turtle.Turtle()
t.penup()
t.goto(0,-200)
t.pendown()
t.circle(200)
t.penup()
t.goto(-100,50)
t.pendown()
t.fillcolor("blue")
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(100,50)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
t.penup()
t.goto(0,50)
t.pendown()
t.circle(-50,steps=3)
t.penup()
t.goto(-150,-70)
t.pendown()
t.goto(0,-170)
t.goto(150,-70)
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