Python 程序:计算电费

创新互联python教程:

从网站建设到定制行业解决方案,为提供成都做网站、网站制作服务体系,各种行业企业客户提供网站建设解决方案,助力业务快速发展。创新互联建站将不断加快创新步伐,提供优质的建站服务。

用实例编写 Python 程序计算电费。为此,我们使用了 Elif 语句。

计算电费的 Python 程序示例 1

这个 python 程序允许用户输入用户消耗的单位。接下来,Python 计算总电费。如果电力局对不同的设备收取不同的费用,这种方法是有用的。对于这个例子,我们使用的是 Elif 语句。

# Python Program to Calculate Electricity Bill

units = int(input(" Please enter Number of Units you Consumed : "))

if(units < 50):
    amount = units * 2.60
    surcharge = 25
elif(units <= 100):
    amount = 130 + ((units - 50) * 3.25)
    surcharge = 35
elif(units <= 200):
    amount = 130 + 162.50 + ((units - 100) * 5.26)
    surcharge = 45
else:
    amount = 130 + 162.50 + 526 + ((units - 200) * 8.45)
    surcharge = 75

total = amount + surcharge
print("\nElectricity Bill = %.2f"  %total)

Python 程序查找电费示例 2

如果电路板具有统一的速率,则该 Python 代码非常有用。类似于:如果你消耗 300 到 500 个单位,那么单位固定为 7.75 卢比,等等。让我们看看 python 程序

提示: Elif 语句先检查蟒的情况。如果为真,则执行该块中的语句。如果条件为假,则 python 程序检查下一个条件(Elif 条件)等等。

# Python Program to Calculate Electricity Bill

units = int(input(" Please enter Number of Units you Consumed : "))

if(units > 500):
    amount = units * 9.65
    surcharge = 85
elif(units >= 300):
    amount = units * 7.75
    surcharge = 75
elif(units >= 200):
    amount = units * 5.26
    surcharge = 55
elif(units >= 100):
    amount = units * 3.76
    surcharge = 35
else:
    amount = units * 2.25
    surcharge = 25

total = amount + surcharge
print("\nElectricity Bill = %.2f"  %total)

蟒电程序输出

 Please enter Number of Units you Consumed : 450

Electricity Bill = 3562.50
>>> 
 Please enter Number of Units you Consumed : 750

Electricity Bill = 7322.50
>>> 
 Please enter Number of Units you Consumed : 250

Electricity Bill = 1370.00
>>> 
 Please enter Number of Units you Consumed : 150

Electricity Bill = 599.00
>>> 
 Please enter Number of Units you Consumed : 50

Electricity Bill = 137.50

网页标题:Python 程序:计算电费
本文URL:http://www.shufengxianlan.com/qtweb/news47/136447.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联