
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Note: It`s python coding

Transcribed Image Text:2. 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 serwidth 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 radius 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 Output
Width: 4
Height: 5
Area: 20
Width: 1
Height: 1
Area: 1
Get Width: 6
Get Height: 6
Area: 36
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
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
- [Python Language] [Python Language] Is it time for tea?Your friend lives in London England in a timezone that is normally 6 hours ahead of Toronto Canada. But sometimes London and Toronto switch to daylight savings time on different dates. If Toronto is on daylight savings time and London isn’t, then the time difference is only 5 hours. Conversely, if London is on daylight savings time and Toronto isn’t, the time change is 7 hours. Of course, if both are on daylight savings time, the difference is back to the standard 6 hours. Write a program that takes three lines of input: a float value representing the time in Toronto, whether Toronto is on daylight savings time (1 means yes, 0 means no), and whether London is on daylight savings time (1 means yes, 0 means no). It prints a float giving the time in London. One complication is that you should not print a time greater or equal to 24.0 or less than 0.0. Suggestion: At first don’t consider this complication, and test cases where the…arrow_forwardCheck all that apply to Python variables A variable is a storage location with a name .a 0 When assigned a value, a variable's takes the type of the value .b O Variables names are case sensitive .c O Python is dynamically typed .d 0 Check all that apply to Python variables A variable is a reference to a value .a U A data type is associated with the variable's name .b O When assigned a new value, a variable's present value is lost A variable is a memory location with a name .d Oarrow_forwardC++ Programmingarrow_forward
- C++ programming PART C. I need help with part C, please.Please make the codes as simple as possible for me thank you so much and Id really really appreciate this. I believe the task is to write a program and when people type in their 3 digit license plate, they can see which spots are open out of the 30 spots. I THINK. but I really need help on this because I could be wrong. Thank you so much.arrow_forwardMention how to utilise Python's split function.arrow_forwardCan you please advise me as to how you would structure the code? Regardsarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education