标签: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
原文地址:http://huzhongliang.blog.51cto.com/1817180/1890477