概述
# 作者:林代码er
# 开发时间:2022/9/12 15:09
'''会员 》=200 打八折
》=100打九折
不打折
非会员 》=200打95折
不打折'''
answer=input("你是会员吗?y/n")
money=float(input("请输入付款金额"))
if answer=='y' :
if money>=200:
print('打八折付款金额为:',money*0.8)
elif money>=100:
print('打九折付款金额为:',money*0.9)
else:
print("不打折",money)
else:
if money>=200:
print('打9.5折,付款金额为',money*0.95)
else:print("不打折,付款金额为",money)
最后
以上就是玩命百褶裙为你收集整理的python入门--嵌套if语句的全部内容,希望文章能够帮你解决python入门--嵌套if语句所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复