Question: write program in python please #A program that demonstrates the shades of red #Fall 2017 import turtle turtle.colormode (255) tess = turtle. Turtle() tess. shape

write program in python please
#A program that demonstrates the shades of red #Fall 2017 import turtle turtle.colormode (255) tess = turtle. Turtle() tess. shape ("turtle") tess.backward (100) #Import the turtle drawing package #Allows colors to be given as 0...255 #Create a turtle #Make it turtle shaped #Move her backwards, to give more space to draw #For 0,10,20,...,250 for i in range (0,255, 10): tess. forward (10) tess. pensize (i) tess.color(i,0,0) #Move forward #Set the drawing size to be i (larger each time) #Set the red channel to be i (brighter each time) The resulting graphics window is: Python Turtle Graphics Now modify the program from Lab 3 to transition from shades of red to shades of green by moving forward 25 steps instead of 10. Your output should look similar to: Hint: decrease the amount of red while increasing the amount of green by the same amount using the loop variable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
