Python创建一个长方体的类,并求其面积
时间: 2023-10-09 18:12:54 浏览: 412
Python实现计算长方形面积(带参数函数demo)
5星 · 资源好评率100%
可以参考以下代码:
```python
class Rectangle:
def __init__(self, length, width, height):
self.length = length
self.width = width
self.height = height
def area(self):
return 2 * (self.length * self.width + self.length * self.height + self.width * self.height)
# 创建一个长方体对象
rect = Rectangle(2, 3, 4)
# 求面积
print(rect.area())
```
解释一下:
- `Rectangle` 是一个长方体类,有三个属性 `length`、`width`、`height` 分别表示长、宽、高。
- `area` 方法用于计算长方体的面积,公式是 $2(lw+lh+wh)$,其中 $l$、$w$、$h$ 分别为长、宽、高。
- 创建一个长方体对象 `rect`,并传入它的长、宽、高。
- 调用 `rect.area()` 方法求出长方体的面积并打印出来。
阅读全文