如何在Python中缩进多个if ... else语句?

缩进块的使用是Python的重要功能。块的缩进级别比以前的语句更多。因此,如果程序中以嵌套方式存在多个if语句,则每个随后的缩进块的缩进级别都会增加。

if expr1==True:
    if expr2==True:
        stmt1
    else:    
     if expr3==True:
        stmt2
else:
    if expr3==True:
       stmt3
    else:
       stmt4