Python8*10长方形函数
时间: 2024-12-19 11:22:44 浏览: 7
在Python中,如果你想要创建一个表示长方形的函数,通常会定义一个类来代表长方形,包含长度(length)和宽度(width)作为属性,并可能包括计算面积(area)和周长(perimeter)的方法。下面是一个简单的例子:
```python
class Rectangle:
def __init__(self, length, width):
self.length = length
self.width = width
# 计算面积
def area(self):
return self.length * self.width
# 计算周长
def perimeter(self):
return 2 * (self.length + self.width)
# 创建一个长方形实例并打印信息
def create_rectangle(length, width):
rectangle = Rectangle(length, width)
print(f"长方形的长是 {rectangle.length},宽是 {rectangle.width}")
print(f"面积是 {rectangle.area()}")
print(f"周长是 {rectangle.perimeter()}")
create_rectangle(8, 10) # 测试长8,宽10的长方形
```
在这个例子中,`create_rectangle`函数用于初始化一个新的长方形,并显示它的属性和几何特性。
阅读全文