w3resource

Python: A class constructed by a length and width and a method which will compute the area of a rectangle

Python Class: Exercise-10 with Solution

Write a Python class named Rectangle constructed from length and width and a method that will compute the area of a rectangle.

Python: Area of a rectangle

In Euclidean plane geometry, a rectangle is a quadrilateral with four right angles. To find the area of a rectangle, multiply the length by the width.
A rectangle with four sides of equal length is a square.
Following image represents the area of a rectangle.

Python: area of a rectangle

Sample Solution:

Python Code:

class Rectangle():
    def __init__(self, l, w):
        self.length = l
        self.width  = w

    def rectangle_area(self):
        return self.length*self.width

newRectangle = Rectangle(12, 10)
print(newRectangle.rectangle_area())

Sample Output:

120 

Flowchart:

Flowchart: A class constructed by a length and width and a method which will compute the area of a rectangle

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python class which has two methods get_String and print_String. get_String accept a string from the user and print_String print the string in upper case.
Next: Write a Python class named Circle constructed by a radius and two methods which will compute the area and the perimeter of a circle.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/class-exercises/python-class-exercise-10.php