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
网友评论