Import Class a) Implement a class Rectangle with two attributes, width and height. b) Implement an init method with an optional parameter type. Set the default value of the attributes of width and height to 1. c) Implement a display method to print the values of width and height. d) Implement a setWidth method to assign width to the instance variable. e) Implement a setHeight method to assign height to the instance variable. f) Implement a getWidth method to return the value of the instance variable width. g) Implement a getHeight method to return the value of the instance variable height. h) Implement an area method to return the value of area of a rectangle. i) Save Rectangle class as rectangle.py. j) Import Rectangle class from rectangle.py. k) Employs the Rectangle class methods above to set and get various measurements of a 1) Instantiate two objects of type rectangle, one with arguments one without. rl = Rectangle (4, 5) r2 = Rectangle () 2) Call display) to print width and height. 3) Call area() in print) to display the area of rl and r2. 4) Call setWidth(() and setHeight() to update width and height to 6 of r2. 5) Call getWidth(() in print() to display the updated width of r2. 6) Call getHeight() in print() to display the updated height of r2. 7) Call area() in print() to display the area of r2.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter11: Introduction To Classes
Section11.2: Basic Class Functions
Problem 5E
icon
Related questions
Question

Python**

Import Class
a) Implement a class Rectangle with two attributes, width and height.
b) Implement an init method with an optional parameter type.
Set the default value of the attributes of width and height to 1.
c) Implement a display method to print the values of width and height.
d) Implement a setWidth method to assign width to the instance variable.
e) Implement a setHeight method to assign height to the instance variable.
f) Implement a getWidth method to return the value of the instance variable width.
g) Implement a getHeight method to return the value of the instance variable height.
h) Implement an area method to return the value of area of a rectangle.
i) Save Rectangle class as rectangle.py.
j) Import Rectangle class from rectangle.py.
k) Employs the Rectangle class methods above to set and get various measurements of a rectangle.
1) Instantiate two objects of type rectangle, one with arguments one without.
rl = Rectangle (4, 5)
r2 = Rectangle ()
2) Call display() to print width and height.
3) Call area() in print() to display the area of rl and r2.
4) Call setWidth() and setHeight() to update width and height to 6 of r2.
5) Call getWidth() in print() to display the updated width of r2.
6) Call getHeight() in print() to display the updated height of r2.
7) Call area() in print() to display the area of r2.
Example Out put
Width: 4
Height: 5
Area: 20
Width: 1
Height: 1
Area: 1
Get Width: 6
Get Height : 6
Area: 36
Transcribed Image Text:Import Class a) Implement a class Rectangle with two attributes, width and height. b) Implement an init method with an optional parameter type. Set the default value of the attributes of width and height to 1. c) Implement a display method to print the values of width and height. d) Implement a setWidth method to assign width to the instance variable. e) Implement a setHeight method to assign height to the instance variable. f) Implement a getWidth method to return the value of the instance variable width. g) Implement a getHeight method to return the value of the instance variable height. h) Implement an area method to return the value of area of a rectangle. i) Save Rectangle class as rectangle.py. j) Import Rectangle class from rectangle.py. k) Employs the Rectangle class methods above to set and get various measurements of a rectangle. 1) Instantiate two objects of type rectangle, one with arguments one without. rl = Rectangle (4, 5) r2 = Rectangle () 2) Call display() to print width and height. 3) Call area() in print() to display the area of rl and r2. 4) Call setWidth() and setHeight() to update width and height to 6 of r2. 5) Call getWidth() in print() to display the updated width of r2. 6) Call getHeight() in print() to display the updated height of r2. 7) Call area() in print() to display the area of r2. Example Out put Width: 4 Height: 5 Area: 20 Width: 1 Height: 1 Area: 1 Get Width: 6 Get Height : 6 Area: 36
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT