Commit 75b4f568 by BellCodeEditor

save project

parent c20f0945
Showing with 10 additions and 0 deletions
import turtle as t
t.pensize(1)
t.bgcolor("black")
colors=["red","yellow","purple","blue"]
t.speed(20)
for x in range(400)
t.forward(2*x)
t.color(colors[x%4])
t.left(91)
t.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