programming-examples/python/Class/Python class named Rectangle constructed by a length and width and a method which will compute the area of a rectangle.py

10 lines
264 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
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())