turtle_prof_tuto003.py

Created by niz-moussatat

Created on June 28, 2022

157 Bytes


# Type your text here
from turtle import *
for i in range(1,17) :
  width(i)
  color(255-10*i,10*i,10*i)
  forward(3*i)
  left(30)