Question: Modify the program from Lab 3 to show the shades of green and then move the turtle forward 300 steps without writing (use the penup()
Modify the program from Lab 3 to show the shades of green and then move the turtle forward 300 steps without writing (use the penup() and pendown() turtle functions) and repeat the same loop, but backwards.
Your output should look similar to: Note: when we say "Modify the program..." only make the requested modifications, everything else is assumed to be kept as is.
#program from lab 3 using python
import turtle turtle.colormode(255) tess = turtle.Turtle() tess.shape("turtle") tess.backward(100)
for i in range(0,255,10): tess.forward(10) tess.pensize(i) tess.color(i,0,0)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
