Commit 584c12a8 by BellCodeEditor

save project

parent 77adecdf
Showing with 18 additions and 6 deletions
import turtle
pen=turtle.Pen()
pen.left(45)
pen.forward(100)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.forward(100)
pen.penup()
len=60
screen=turtle.Screen()
screen.bgcolor("blue")
pen.goto(100,-100)
pen.down()
pen.write("1234567",font=("Times",10,"normal"))
pen1=turtle.Pen()
pen1.left(45)
pen1.forward(2*len)
pen1.circle(len,180)
pen1.right(90)
pen1.circle(len,180)
pen1.forward(2*len)
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