Commit dc677489 by BellCodeEditor

auto save

parent b5db8aaf
Showing with 9 additions and 5 deletions
...@@ -7,4 +7,6 @@ pen.forward(100) ...@@ -7,4 +7,6 @@ pen.forward(100)
pen.left(90) pen.left(90)
pen.forward(100) pen.forward(100)
pen.left(90) pen.left(90)
pen.circle(50,180) pen.circle(50,180)
\ No newline at end of file pen.hideturtle()
turtle.done()
\ No newline at end of file
import turtle import turtle
pen=turtle.Pen() pen=turtle.pen()
pen.pencolor("blue") pen.pencolor("blue")
pen.pensize(5) pen.pensize(5)
pen.circle(50) pen.circle(50)
...@@ -22,4 +22,6 @@ pen.penup() ...@@ -22,4 +22,6 @@ pen.penup()
pen.goto(165,-70) pen.goto(165,-70)
pen.pendown() pen.pendown()
pen.pencolor("green") pen.pencolor("green")
pen.circle(50) pen.circle(50)
\ No newline at end of file pen.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