import turtle colors=["green","white","red"] t=turtle.Pen() turtle.bgcolor('black') for i in range(200): t.pencolor(colors[i%3]) t.width(i/100+1) t.forward(i) t.left(59)t.me/codewithshani/6024621August 15, 2023 6.5K 7