Commit 82b8a91c by BellCodeEditor

save project

parent c816b9b8
Showing with 19 additions and 0 deletions
import turtle
pen1=turtle.Pen()
pen1.penup()
pen1.goto(100,-100)
pen1.write("123457",font=("Times",10,"normal"))
pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("#abcdef")
pen.color("red")
pen.pensize(10)
len=25
pen.left(45)
pen.fd(2*len)
pen.circle(50,180)
pen.right(90)
pen.circle(50,180)
pen.fd(2*len)
pen.hideturtle()
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