美文网首页
Python3流程控制: if elif else 多个判断条件

Python3流程控制: if elif else 多个判断条件

作者: robot_test_boy | 来源:发表于2022-01-24 23:36 被阅读0次

Python语言中,对一个判断条件(2<3)会返回一个布尔值True或False。

使用场景1:if condition

if condition :

      indentedStatementBlock

场景2:if-else

if condition :

    ForTrueCondition

else:

    ForFalseCondition

场景3:if-else

if condition :

    ForTrueCondition

elif condition2 :

    ForTrueCondition

else:

    ForFalseCondition

if语句执行有个特点,它是从上往下判断,如果在某个判断上是True,把该判断对应的语句执行后,就忽略掉剩下的elif和else

参考资料:Python3 指导手册

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/index.html

http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/ifstatements.html

相关文章

网友评论

      本文标题:Python3流程控制: if elif else 多个判断条件

      本文链接:https://www.haomeiwen.com/subject/meetwltx.html