编写一个函数area(height,width),计算长方形的面积。要求使用input函数接收长方形的高和宽,高和宽定义为float类型 Python代码
时间: 2024-03-12 08:47:45 浏览: 159
下面是 Python 代码实现:
```python
def area(height, width):
return height * width
height = float(input("请输入长方形的高:"))
width = float(input("请输入长方形的宽:"))
print("长方形的面积为:", area(height, width))
```
这个程序中定义了一个名为`area`的函数,接收长方形的高和宽作为参数,然后计算长方形的面积并返回。接下来使用`input`函数分别接收长方形的高和宽,将输入的字符串转化为`float`类型,最后调用函数计算长方形的面积并打印输出。
阅读全文