Commit b2193361 by BellCodeEditor

save project

parent 4d045c4d
Showing with 18 additions and 10 deletions
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.pensize(6) pen.penup()
pen.color("red") pen.goto(-100,100)
pen.left(45) pen.pendown()
pen.forward(100) for i in range(4):
pen.circle(50,180) pen.forward(200)
pen.right(90) pen.right(90)
pen.circle(50,180) pen.penup()
pen.forward(100) pen.goto(0,-50)
turtle.done() pen.pendown()
\ No newline at end of file pen.fillcolor("blue")
pen.begin_fill()
pen.circle(50)
pen.end_fill()
pen.hideturtle()
turtle.done()
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