Question: Question 11b 12 points Write a function named Ls that uses turtle graphics and the function capitall to draw a sequence of letter L's of

Question 11b 12 points Write a function named Ls that uses turtle graphics and the function capitall to draw a sequence of letter L's of specified size, position and orientation. Begin drawing each letter L at the same point, which is the initial location of the turtle. Increase the size of each letter L after the first L by a specified factor. Rotate each letter L after the first one clockwise by a specified angle. The function Ls should repeatedly call capitall to draw the letter L's The function Ls takes 5 parameters: 1. t, a turtle used for drawing 2. initwidth, the length of the short side of the first L 3. multiplier, the factor by which the size of successive L's is increased 4. reps, an integer that is the number of L's to draw 5. angle, the number of degrees to rotate successive rectangles If Ls is called by the following code, this would be correct output. import turtle s = turtleScreen() aPen turtle,Turtle() aPen.left (60) Ls (aPen, 20, 1.5, 3, 20)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
