Commit 584c12a8 by BellCodeEditor

save project

parent 77adecdf
Showing with 19 additions and 8 deletions
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.left(45) pen.penup()
pen.forward(100) len=60
pen.circle(50,180) screen=turtle.Screen()
pen.right(90) screen.bgcolor("blue")
pen.circle(50,180) pen.goto(100,-100)
pen.forward(100) pen.down()
turtle.done()
\ No newline at end of file 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