Commit ab5e6fb4 by BellCodeEditor

save project

parent 0a0a3ebe
Showing with 42 additions and 0 deletions
"""
import turtle
pen=turtle.Pen()
pen.left(45)
pen.forward(100)
pen.left(90)
pen.circle(50,180)
pen.right(180)
pen.forward(100)
pen.right(90)
pen.circle(-50,180)
turtle.done()
"""
"""
import turtle
pen=turtle.Pen()
pen.color("blue")
pen.circle(50,360)
pen.penup()
pen.goto(100,0)
pen.pendown()
pen.color("black")
pen.circle(50)
pen.penup()
pen.goto(200,0)
pen.pendown()
pen.color("red")
pen.circle(50)
pen.penup()
pen.goto(50,-50)
pen.pendown()
pen.color("yellow")
pen.circle(50)
pen.penup()
pen.goto(150,-50)
pen.pendown()
pen.color("green")
pen.circle(50)
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