Commit 81c4da32 by BellCodeEditor

save project

parent 1abf72a9
Showing with 23 additions and 0 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("light blue")
q=turtle.Pen()
q.penup()
q.goto(100,-100)
q.write("niho",font=("Times",20,"normal"))
q.hideturtle()
z=turtle.Pen()
len=60
z.pencolor("red")
z.pensize(5)
z.left(45)
z.forward(2*len)
z.circle(len,180)
z.right(90)
z.circle(len,180)
z.forward(2*len)
z.hideturtle()
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