定义一个rectangle类表示矩形
时间: 2023-05-13 17:07:01 浏览: 91
定义一个名为rectangle 的矩形类,其属性数据为矩形左上角和右上角的点的坐标能计算矩形的面积
5星 · 资源好评率100%
好的,以下是一个简单的rectangle类的定义:
```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)
```
这个类有两个属性:width和height,以及两个方法:area和perimeter,分别用于计算矩形的面积和周长。
阅读全文