Commit 67b57133 by BellCodeEditor

save project

parent 12e14a7a
Showing with 7 additions and 3 deletions
import turtle import turtle
p=turtle.Pen() p=turtle.Pen()
d=1 d=1
p.speed('fastest') s=turtle.Screen()
s.bgcolor('black')
p.speed(1001234678)
p.pensize(2)
p.pencolor('lightblue')
for i in range(900): for i in range(900):
p.forward(d) p.forward(d)
p.right(91) p.right(91)
d+=1 d+=1
p.hideturtle() p.hideturtle()
turtle.down() turtle.done()
\ No newline at end of file \ 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