Commit a963ccf2 by BellCodeEditor

save project

parent faf8dd05
Showing with 18 additions and 0 deletions
import turtle
pen=turtle.Pen()
sen=turtle.Screen()
sen.bgcolor("black")
pen.color("red")
for i in range(300):
if (1%4==1):
pen.color("red")
if (1%4==2):
pen.color("orange")
if (1%4==3):
pen.color("yellow")
if (1%4==0):
pen.color("green")
pen.forward(i)
pen.right(91)
\ 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