码迷,mamicode.com
首页 > 编程语言 > 详细

python练习-if-elif-else

时间:2017-01-10 00:06:13      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:python

answer=int(raw_input("enter the number1:"))
if answer>=10:
    print "you got at least 10!"
elif answer>=5:
    print "you got at least 5!"
elif answer>=3:
    print "you got at least 3!"
else:
    print"you got less than 3!"

#以上所有都为假,可以使用else给出一个结果


python练习-if-elif-else

标签:python

原文地址:http://huzhongliang.blog.51cto.com/1817180/1890477

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