Commit a3f0c2fd by BellCodeEditor

save project

parent 7d51539c
Showing with 18 additions and 0 deletions
import turtle
pen1=turtle.Pen()
screen=turtle.Screen()
pen1.speed('fast')
pen1.hideturtle()
screen.bgcolor('black')
i=0
while i<135:
pen1.pencolor('pink')
pen1.penup()
pen1.goto(0,0)
pen1.forward(100)
pen1.pendown()
pen1.circle(100)
pen1.left(1)
i+=1
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