Commit 4a368c97 by BellCodeEditor

save project

parent 3902b31e
Showing with 3 additions and 1 deletions
from turtle import * from turtle import *
speed(20) speed(20)
screen=Screen()
bgcolor("black")
dist=1 dist=1
color=["red","blue","yellow","pink"] color=["red","blue","yellow","pink"]
for i in range(1,300): for i in range(1,300,2):
pencolor(color[i%4]) pencolor(color[i%4])
forward(i) forward(i)
right(91) right(91)
......
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