码迷,mamicode.com
首页 > 其他好文 > 详细

day03_13 多分支if语句及作业

时间:2017-09-06 19:32:18      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:class   语句   highlight   升级   if语句   ==   input   pre   core   

猜年龄升级版

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语句及作业

标签:class   语句   highlight   升级   if语句   ==   input   pre   core   

原文地址:http://www.cnblogs.com/darkalex001/p/7486193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!