Commit 3902b31e by BellCodeEditor

save project

parent 689345c5
Showing with 3 additions and 4 deletions
from turtle import * from turtle import *
speed(20)
dist=1 dist=1
color=["red","orange","pink","green"] color=["red","blue","yellow","pink"]
for i in range(1,300,2): for i in range(1,300):
pencolor(color[i%4]) pencolor(color[i%4])
forward(i) forward(i)
right(91) right(91)
dist+=1
hideturtle() hideturtle()
done() 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