Commit b5db8aaf by BellCodeEditor

auto save

parent ac0ff3d7
Showing with 37 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.left(45)
pen.circle(50,180)
pen.left(90)
pen.forward(100)
pen.left(90)
pen.forward(100)
pen.left(90)
pen.circle(50,180)
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.pencolor("blue")
pen.pensize(5)
pen.circle(50)
pen.penup()
pen.goto(110,0)
pen.pendown()
pen.pencolor("black")
pen.circle(50)
pen.penup()
pen.goto(220,0)
pen.pendown()
pen.pencolor("red")
pen.circle(50)
pen.penup()
pen.goto(55,-70)
pen.pendown()
pen.pencolor("yellow")
pen.circle(50)
pen.penup()
pen.goto(165,-70)
pen.pendown()
pen.pencolor("green")
pen.circle(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