Commit a28aecb2 by BellCodeEditor

auto save

parent b6cfe5f6
Showing with 4 additions and 0 deletions
import turtle import turtle
p = turtle.Pen() p = turtle.Pen()
screen = turtle.Screen()
p.speed(300) p.speed(300)
screen.bgcolor("black")
colors = ["red","orange","yellow","green"]
for i in range(1,300): for i in range(1,300):
p.color(colors[i%4])
p.forward(i) p.forward(i)
p.right(91) p.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