用python编写一个代表矩形的类,其具备: (1)长、宽属性 (2)求面积行为
时间: 2024-05-27 22:11:54 浏览: 52
一个矩形类
class Rectangle:
def __init__(self, length, width):
self.length = length
self.width = width
def area(self):
return self.length * self.width
# 示例用法
rect = Rectangle(5, 3)
print(rect.area()) # 输出 15
阅读全文