Starting from the code provided in turtle_writing_template.py,
complete each of the letter functions so that they will draw that letter on the
screen. It helps to imagine each letter sitting inside a rectangle (called a
bounding box) as shown in Fig. 5.8. To draw a
letter, assume the turtle starts in the lower left corner of the bounding box,
and make sure it ends in the lower right corner.
Then fill in the main() function so that it calls each of the letter
functions at the appropriate place to write the message “Steps To Leaps” on the
screen as shown below.
Hint
Your entire drawing must fit in the provided canvas.
Do not modify the size of the canvas provided in the template.
Start drawing in the upper left corner to make sure everything fits.
Ensure your program’s output matches the provided samples exactly.
This includes all characters, white space, and punctuation. In the
samples, user input is highlighted like
this for clarity, but your program should not highlight user
input in this way.
Save your finished program as turtle_writing_login.py,
replacing login with your Purdue login. Then submit it along with
all the deliverables listed in
Table 5.5 below.