Commit a8799c31 by BellCodeEditor

auto save

parent faf8dd05
Showing with 16 additions and 0 deletions
import turtle
import random
pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("black")
list11 = ["yellow","blue", "red","pink"]
distance = 1
for i in range(150):
pen.forward(i)
pen.right(91)
color1 = random.choice(list11)
pen.color(color1)
turtlr.hideturtle()
pen.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