Python Turtle Graphics : set the turtle to asquare shape, and move it from the top left corner of thescreen towards the bottom right corner,getting bigger as it moves along.
the square turtle’s start size is 0.5 and it grows 0.01 at eachiteration. The turtle travel distance in each iteration must be setto the (total path length / 100).
The current code I have below works; except it doesn’talways go to the bottom right corner of the screen eachtime it is ran because the height and width is chosen randomly andchanges. Please help me fix this issue.
CURRENT CODE:
import turtle
import random
numbers = (100,
OR
OR