Question: Answer must be in Python 3 Question 11b (12 points) Write a function named tRow that uses turtle graphics and the function capT from Question

 Answer must be in Python 3 Question 11b (12 points) Write

Answer must be in Python 3

Question 11b (12 points) Write a function named tRow that uses turtle graphics and the function capT from Question 11a to draw a series of capital T's of increasing (or decreasing) size. The T's should all rest on a common baseline (which is not drawn). The enclosing rectangle for each letter T should just touch but not overlap the enclosing rectangle of the next T. (Do not draw the enclosing rectangle.) Begin drawing at the initial location and direction of the turtle The function tRow should repeatedly call capT to draw the T's The function tRow takes 4 parameters: 1. t, a turtle used for drawing 2. num, the number of T's to draw 3. init, the height of the first T 4. ratio, the ratio of the heights of successive T's For example if tRow is called by the following code, the drawing below would be correct output import turtle s turtle.Screen () t turtle.Turtle() t.left (90) tRow(t, 3, 40, 1.5)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!