Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

bartleby

Concept explainers

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 ]
expand button
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
Check Mark
Knowledge Booster
Background pattern image
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
    Recommended textbooks for you
    Text book image
    Database System Concepts
    Computer Science
    ISBN:9780078022159
    Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
    Publisher:McGraw-Hill Education
    Text book image
    Starting Out with Python (4th Edition)
    Computer Science
    ISBN:9780134444321
    Author:Tony Gaddis
    Publisher:PEARSON
    Text book image
    Digital Fundamentals (11th Edition)
    Computer Science
    ISBN:9780132737968
    Author:Thomas L. Floyd
    Publisher:PEARSON
    Text book image
    C How to Program (8th Edition)
    Computer Science
    ISBN:9780133976892
    Author:Paul J. Deitel, Harvey Deitel
    Publisher:PEARSON
    Text book image
    Database Systems: Design, Implementation, & Manag...
    Computer Science
    ISBN:9781337627900
    Author:Carlos Coronel, Steven Morris
    Publisher:Cengage Learning
    Text book image
    Programmable Logic Controllers
    Computer Science
    ISBN:9780073373843
    Author:Frank D. Petruzella
    Publisher:McGraw-Hill Education