python定义一个costCompute( )函数,该函数接受电表的期末读数和期初读数作为参数,计算并返回当期应缴电费。(注:每度电0.85元) 要求如下: 1.有函数定义、函数调用; 2.有参数传递、函数返回值; 3.有输入与输出。
时间: 2024-03-16 10:43:16 浏览: 125
好的,以下是 Python 的代码实现:
```python
def costCompute(end_reading, start_reading):
"""
计算当期应缴电费
:param end_reading: 期末电表读数
:param start_reading: 期初电表读数
:return: 当期应缴电费
"""
degree = end_reading - start_reading # 用电度数
cost = degree * 0.85 # 应缴电费
return cost
# 主程序
if __name__ == '__main__':
end_reading = float(input("请输入期末电表读数:"))
start_reading = float(input("请输入期初电表读数:"))
cost = costCompute(end_reading, start_reading)
print("当期应缴电费为:%.2f 元" % cost)
```
使用时,用户输入期末和期初电表读数,程序就会自动计算出当期应缴电费并输出。其中,costCompute() 函数接受两个参数:期末电表读数和期初电表读数,返回当期应缴电费。参数类型为浮点数,返回值类型也为浮点数。
注意:输入的电表读数必须是数字,否则会报错。
阅读全文