创建一个python脚本,定义多返回值函数fun2(length,width),使用字典返回长方形的周长和面积{'周长': 30, '面积': 50}。调用函数计算并输出长为10,宽为5的长方形的周长和面积
时间: 2023-04-10 21:00:54 浏览: 81
计算长方形的周长和面积
好的,这是一个关于Python编程的问题,我可以回答。以下是代码:
```python
def fun2(length, width):
perimeter = 2 * (length + width)
area = length * width
return {'周长': perimeter, '面积': area}
result = fun2(10, 5)
print(result)
```
输出结果为:{'周长': 30, '面积': 50}。
阅读全文