Commit 5708f10e by BellCodeEditor

save project

parent b37826f5
Showing with 26 additions and 0 deletions
import turtle
turtle.left(45)
turtle.forward(100)
turtle.left(90)
turtle.circle(50,180)
turtle.left(180)
turtle.forward(100)
turtle.right(90)
turtle.circle(-50,180)
\ No newline at end of file
import turtle
def wh(a,b,color)
turtle.pencolor(color)
turtle.pensize(5)
turtle.penup()
turtle.goto(a,b)
turtle.pendown()
turtle.circle(40)
wh(-100,50,"blue")
wh(-15,50,"black")
wh(70,50,"red")
wh(-60,-10,"yellow")
wh(25,-10,"green")
turtle.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