Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise 4 You've volunteered to repaint the walls in Leo's Lounge and will need to use a ladder when painting close to the ceiling. You
Exercise 4 You've volunteered to repaint the walls in Leo's Lounge and will need to use a ladder when painting close to the ceiling. You know that a ladder has to be placed against a wall at an angle; otherwise, it will fall over. Use the FDR to design, code and test the definition of a function named height. This function takes the length of a ladder, measured in metres, and the angle that it forms with the ground as it leans against the wall, measured in degrees. It returns the height reached by the ladder. Your function definition: must have type annotations and a complete docstring. Think carefully about the range of permitted values for the two parameters. Remember to document these in your docstring. Hint 1:The most challenging part of this exercise is the math, not the Python code. In Step 1 of the FDR, use trigonometry to express the solution's formula using mathematical notation before you prepare the function call examples. In Step 4 of the FDR, translating the formula to Python should be straightforward. Hint 2: When you're coding the function body, use the shell to investigate which trigonometric functions are provided by Python's math module: >>> import math >>> help(math)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started