Commit 25e96482 by BellCodeEditor

auto save

parent fa5fdd8a
Showing with 26 additions and 0 deletions
# import turtle
import
a=-40
turtle.penup()
turtle.goto(-100,100)
turtle.pendown()
for i in range(4):
    turtle.forward(200)
    turtle.right(90)
turtle.penup()
turtle.pencolor("red")
for i in range(3):
    turtle.goto(a,-10)
    turtle.pendown()
    turtle.fillcolor("red")
    turtle.begin_fill()
    turtle.circle(10,360)
    turtle.end_fill()
    turtle.penup()
    a+=40
turtle.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