Commit e2428d3f by BellCodeEditor

auto save

parent dc70412a
Showing with 19 additions and 0 deletions
import turtle
t=turtle.Turtle()
t.speed(0)
s=turtle.Screen()
s.bgcolor("black")
t.color("white")
for i in range(1000):
t.fd(int(i))
t.right(90)
turtle.done()
speed=0
while True:
right(speed)
speed+=1
if speed>50:
speed=50
if speed==0:
speed=0
\ 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