Commit 3046bb01 by BellCodeEditor

save project

parent 847fa266
Showing with 9 additions and 3 deletions
import turtle import turtle
a=turtle.Pen() a=turtle.Pen()
a.pencolor('blue') c=turtle.Screen()
c.bgcolor('black')
a.speed(100)
colors=['red','orange','yellow','blue']
for b in range(300): for b in range(300):
a.pencolor(colors[b%4])
a.right(91) a.right(91)
a.forward(b) a.forward(b)
\ No newline at end of file a.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