Question: Using Python: 7.1 .(The Rectangle class) Following the example of the Circle class in Section 7.2, design a class named Rectangle to represent a rectangle.
Using Python:
7.1.(The Rectangle class) Following the example of the Circle class in Section 7.2, design a class named Rectangle to represent a rectangle. The class contains: Two data fields named width and height. A constructor that creates a rectangle with the specified width and height. The default values are 1 and 2 for the width and height, respectively. A method named getArea() that returns the area of this rectangle. A method named getPerimeter() that returns the perimeter. Draw the UML diagram for the class, and then implement the class. Write a test program that creates two Rectangle objectsone with width 4 and height 40 and the other with width 3.5 and height 35.7. Display the width, height, area, and perimeter of each rectangle in this order.
Requirement:(You dont need to do the 7.1, just do the one below)
(Save it to a new .py file)
Define an exception class for Account in 7.1. Update the Account class to have it raise your user-defined exception when the following arguments are negative.
annualInterestRate passed to __init__()
amount passed to withdraw()
amount passed to deposit()
Update the test function to handle the exception.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
