Commit 62cd92c9 by BellCodeEditor

save project

parent 186f38b0
Showing with 27 additions and 0 deletions
......@@ -20,4 +20,17 @@ pen1.circle(75,180)
pen1.right(90)
pen1.circle(75,180)
pen1.forward(150)
len=20
pen2=turtle.Pen()
pen2.penup()
pen2.goto(-80,60)
pen2.pendown()
pen2.pensize(10)
pen2.pencolor("red")
pen2.left(45)
pen2.forward(80)
pen2.circle(2*len,180)
pen2.right(90)
pen2.circle(2*len,180)
pen2.forward(80)
turtle.done()
import turtle
s=turtle.Screen()
s.bgcolor("deeppink")
pen=turtle.Pen()
pen.pensize(10)
pen.pencolor("red")
pen.circle(75,360)
pen.penup()
pen.goto(-80,0)
pen.pendown()
pen.circle(75,360)
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