定义一个名为Rectangle的类表示矩形
时间: 2023-07-10 17:10:58 浏览: 135
定义一个名为rectangle 的矩形类,其属性数据为矩形左上角和右上角的点的坐标能计算矩形的面积
5星 · 资源好评率100%
好的,以下是一个简单的Python代码实现:
```
class Rectangle:
def __init__(self, width, height):
self.width = width
self.height = height
def area(self):
return self.width * self.height
def perimeter(self):
return 2 * (self.width + self.height)
```
这个类有两个属性:宽度和高度。它还有两个方法:计算矩形的面积和周长。你可以通过以下代码创建一个Rectangle对象并调用它的方法:
```
rect = Rectangle(5, 10)
print("Area:", rect.area())
print("Perimeter:", rect.perimeter())
```
输出:
```
Area: 50
Perimeter: 30
```
阅读全文