为您提供一些背景信息,我正在做的项目是根据用户的输入创建账单,如果用户愿意在 10 天内付款,该项目的一部分概述了折扣。
我们的老师说我们必须在我们的项目中嵌套 if 语句,但我不确定为什么或如何嵌套。
我错过了嵌套课程,我不知道如何成功实现 if 语句,我在网上看到的一切都超出了我的技能水平,而且我不知道我的代码哪里出了问题。
#finding out the potential discount for paying within 10 days
if pay == "no":
discount = 0
if pay == "yes" and firstBill > 100 and firstBill < 200:
discount = (firstBill * 0.015)
elif pay == "yes" and firstBill > 200 and firstBill < 400:
discount = (firstBill * 0.03)
elif pay == "yes" and firstBill > 400 and firstBill < 800:
discount = (firstBill * 0.04)
elif pay == "yes" and firstBill > 800:
discount = (firstBill * 0.05)
else:
print("error")
else:
print("error")
慕尼黑8549860
相关分类