Commit 3b2d923f by BellCodeEditor

auto save

parent 9a581ef4
Showing with 39 additions and 0 deletions
import turtle
turtle.speed(5)
turtle.pensize(5)
turtle.screensize(800,600,"pink")
# turtle.forward(100)
# turtle.right(90)
# turtle.forward(100)
# turtle.right(90)
# turtle.forward(100)
# turtle.right(90)
# turtle.forward(100)
turtle.penup()
turtle.goto(0,-200)
turtle.pendown()
turtle.begin_fill()
turtle.fillcolor("white")
turtle.circle(200)
turtle.end_fill()
turtle.penup()
turtle.goto(-80,50)
turtle.pendown()
turtle.fillcolor("black")
turtle.begin_fill()
turtle.circle(40)
turtle.end_fill()
turtle.penup()
turtle.goto(80,50)
turtle.pendown()
turtle.fillcolor("black")
turtle.begin_fill()
turtle.circle(40)
turtle.end_fill()
turtle.penup()
turtle.pencolor("red")
turtle.goto(-120,-50)
turtle.pendown()
turtle.goto(0,-100)
turtle.goto(120,-50)
\ 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