Question: In python: Write a class definition called RectangularSolid which takes three numeric parameters in its constructor, in this order: length, width, height. Provide a get_volume
In python:
Write a class definition called RectangularSolid which takes three numeric parameters in its constructor, in this order: length, width, height.
Provide a get_volume method that returns the volume of the rectangular solid. This method takes no parameters.
Provide a get_surface_area method that returns the surface area of the rectangular solid. This method takes no parameters.
For example:
| Test | Result |
|---|---|
r1 = RectangularSolid(3,4,5) print(r1.get_volume()) print(r1.get_surface_area()) | 60 94 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
