Question: Answer in Python Problem #1: Area of a square . Given a square's width and height, display its area. The area of a sqare is


Answer in Python
Problem #1: Area of a square . Given a square's width and height, display its area. The area of a sqare is its width multiplied by its height. Prompt the user to enter the required inputs. use input() to prompt the user to enter the required values Note: For additional references about taking input in Python, see: https://stackabuse.com/getting-user-input-in-python/ https://pynative.com/python-input-function-get-user-input/ Note: Data entered at a prompt will be of type string. Therefore, if the datatype required is not a string, the entered data will need to be converted before it can be used. In [3] : Request the inputs from the user # Compute the area # Display the results Enter the width: 2 Enter the height: 2 The area is 4.0 square units. Problem #2: Area of a circle Given a circle's radius, display its area. The area of a circle is pi times the radius squared. Prompt the user to enter the required input. . use input() to prompt the user to enter the required values In [1]: # Request the inputs from the user # Compute the area # Display the results Enter the radius: 3.2 The area is 32.153600000000004 square units. Problem #2: Area of a circle Given a circle's radius, display its area. The area of a circle is pi times the radius squared. Prompt the user to enter the required input. . use input() to prompt the user to enter the required values In [1]: # Request the inputs from the user # Compute the area # Display the results Enter the radius: 3.2 The area is 32.153600000000004 square units
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
