python练习-if-elif-else

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习-if-elif-else相关的知识,希望对你有一定的参考价值。

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 Python练习 - 练习1(rrosinante)

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习

Python输入输出练习,运算练习,turtle初步练习