Python程序:计算收益和损失

创新互联Python教程:

创新互联是一家专业提供定西企业网站建设,专注与做网站、成都网站建设、H5技术、小程序制作等业务。10年已为定西众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。

写一个 Python 程序,用实例计算盈亏。

使用 Elif 语句计算收益和损失的 Python 程序

这个 python 程序允许用户输入产品的销售额和实际成本。接下来,Python 使用 Elif 语句基于这两个值计算损失金额或利润金额。

# Python Program to Calculate Profit or Loss

actual_cost = float(input(" Please Enter the Actual Product Price: "))
sale_amount = float(input(" Please Enter the Sales Amount: "))

if(actual_cost > sale_amount):
    amount = actual_cost - sale_amount
    print("Total Loss Amount = {0}".format(amount))
elif(sale_amount > actual_cost):
    amount = sale_amount - actual_cost
    print("Total Profit = {0}".format(amount))
else:
    print("No Profit No Loss!!!")

Python 收益和损失输出

 Please Enter the Actual Product Price: 1500
 Please Enter the Sales Amount: 1200
Total Loss Amount = 300.0

让我试试不同的价值观

Elif 声明为

if(actual_cost > sale_amount):
    amount = actual_cost - sale_amount
    print("Total Loss Amount = {0}".format(amount))
elif(sale_amount > actual_cost):
    amount = sale_amount - actual_cost
    print("Total Profit = {0}".format(amount))
else:
    print("No Profit No Loss!!!")
  • If 条件检查实际成本是否大于销售金额。如果为真,则 Python 将损失金额打印为实际成本-销售额
  • Elif 语句检查销售金额是否大于实际成本。如果为真,它会将利润额打印为销售额-实际成本
  • 如果上述条件失败,则意味着无利无损。

用算术运算符计算盈亏的 Python 程序

在这个盈亏 python 程序中,我们使用的是一个减运算符。

# Python Program to Calculate Profit or Loss

actual_cost = float(input(" Please Enter the Actual Product Price: "))
sale_amount = float(input(" Please Enter the Sales Amount: "))

if(actual_cost - sale_amount > 0):
    amount = actual_cost - sale_amount
    print("Total Loss Amount = {0}".format(amount))
elif(sale_amount - actual_cost > 0):
    amount = sale_amount - actual_cost
    print("Total Profit = {0}".format(amount))
else:
    print("No Profit No Loss!!!")

在这里,我们尝试了所有的可能性,Python 盈亏程序的输出是

 Please Enter the Actual Product Price: 2200
 Please Enter the Sales Amount: 6500
Total Profit = 4300.0
>>> 
 Please Enter the Actual Product Price: 9800
 Please Enter the Sales Amount: 7200
Total Loss Amount = 2600.0
>>> 
 Please Enter the Actual Product Price: 1495
 Please Enter the Sales Amount: 1495
No Profit No Loss!!!

标题名称:Python程序:计算收益和损失
网站网址:http://www.shufengxianlan.com/qtweb/news30/104080.html

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

广告

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