day03_13 多分支if语句及作业
Posted darkalex001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day03_13 多分支if语句及作业相关的知识,希望对你有一定的参考价值。
猜年龄升级版
age_of_princal = 56 guess_age = int( input("请输入您猜测的年龄") ) if guess_age == age_of_princal: print("恭喜你,猜对啦!") elif guess_age > age_of_princal: print("猜大啦!") else: print("猜小啦")
elif升级版
score = int(input("score:")) if score > 90: print("A") elif score>80: print("B") elif score>70: print("C") elif score>50: print("D") else: print("gun")
以上是关于day03_13 多分支if语句及作业的主要内容,如果未能解决你的问题,请参考以下文章