turtle_prof_tuto006.py

Created by niz-moussatat

Created on May 07, 2023

263 Bytes


from random import *
from turtle import *
length = 1
for count in range(20):
  width(randint(2, 10))
  speed(200)
  forward(length)
  right(135)
  left(2) 
  color(randint(0, 255),randint(0, 255),randint(0, 255)) 
  length = length + 15