博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python根据数量打折输出总额_IfElifElse Python(折扣方案)
阅读量:6621 次
发布时间:2019-06-25

本文共 757 字,大约阅读时间需要 2 分钟。

我正在做一个程序,根据客户购买的数量给予折扣。

方向如下:

某些在线商店根据购买总额提供折扣:If the purchase total is over $50, a 5% discount is applied

If the purchase total is over $100, a 10% discount is applied

If the purchase total is over $500, a 15% discount is applied

使用if elif else链计算应用任何折扣后的采购金额。对于您的演示,使用499.99美元的购买。

到目前为止,这是我创建的,但它似乎运行不正常,我想知道我能做些什么来改进我的代码,也许我能正确地使用if-elif-else代码。提前谢谢大家。if total_cost>=10:

if give_shopper_5percent_discount():

print"You have won a discount"

total_cost -= discount

candidate_prime =True

elif total_cost>100:

if give_shopper_10percent_discount():

print"You have won a discount"

total_cost -= discount

candidate_prime =True

else total_cost>=500:

if give_shopper_15percent_discount():

print"You have won a discount"

total_cost -= discount

candidate_prime =True

转载地址:http://wycpo.baihongyu.com/

你可能感兴趣的文章
JVM知识
查看>>
Python 列表 min() 方法
查看>>
C语言中 Float 数据结构的存储计算
查看>>
Linux系统监控命令详解
查看>>
HSF源码阅读
查看>>
1.Flask URL和视图
查看>>
【死磕jeesite源码】Jeesite配置定时任务
查看>>
MFC更换窗口图标
查看>>
[三]JavaIO之IO体系类整体设计思路 流的概念以及四大基础分类
查看>>
Java 读取某个目录下所有文件、文件夹
查看>>
携程ELK
查看>>
朱晔和你聊Spring系列S1E2:SpringBoot并不神秘
查看>>
关于Java中的注释语句的对Java代码的影响
查看>>
2013年度第一期测试沙龙 PPT下载
查看>>
我的Java后端书架 (2016年暮春3.0版)
查看>>
两行代码搞定UITableView无数据无网络显示-b
查看>>
Microsoft Speech SDK开发包 使用
查看>>
Android应用开发基础篇(2)-----Notification(状态栏通知)
查看>>
10 款非常棒的CSS代码格式化工具推荐
查看>>
SQL Server 临时表的删除
查看>>