Commit 5dd73f71 by BellCodeEditor

auto save

parent 34a3124a
Showing with 39 additions and 0 deletions
import turtle
Pen1=turtle.Pen()
Pen1.left(45)
Pen1.forward(80)
Pen1.left(90)
Pen1.circle(40,180)
Pen1.left(180)
Pen1.forward(80)
Pen1.left(-90)
Pen1.circle(-40,180)
turtle.done()
\ No newline at end of file
import turtle
Pen=turtle.Pen()
Pen.pensize(5)
Pen.color('blue')
Pen.circle(80)
Pen.right(90)
Pen.color('yellow')
Pen.circle(80)
Pen.right(90)
Pen.right(180)
Pen.penup()
Pen.forward(150)
Pen.pendown()
Pen.color('black')
Pen.circle(80)
Pen.right(90)
Pen.color('green')
Pen.circle(80)
Pen.right(90)
Pen.penup()
Pen.forward(-150)
Pen.pendown()
Pen.color('red')
Pen.circle(-80)
Pen.left(360)
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