Commit 0e9f6326 by BellCodeEditor

save project

parent 0f02d496
Showing with 7 additions and 3 deletions
import turtle as pen import turtle as pen
screen=pen.Screen()
screen.bgcolor("black")
pen.speed(10000)
colors=["red","orange","yellow","green"]
for i in range(1,300): for i in range(1,300):
pen.speed(10000) pen.pencolor(colors[i%4])
pen.fd(i) pen.fd(i)
pen.right(91) pen.right(91)
pen.done() pen.hideturtle()
\ No newline at end of file pen.done()
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