Python if语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python if语句相关的知识,希望对你有一定的参考价值。
标准if条件语句语法
if expression:
if_suite
如果表达式非0值,则代码组if_suite 被执行;否则就去执行下一条语句
>>> if 3 > 1: ... print ‘ok‘ ... print ‘yes‘ ... ok yes >>> if 3 > 1: ... print ‘ok‘ ... print ‘yes‘ File "<stdin>", line 3 print ‘yes‘ ^ IndentationError: unexpected indent >>> if 3: ... print ‘ok‘ ... ok >>> if 0: ... print ‘ok‘ ... >>> if ‘‘: ... print ‘ok‘ ... >>> if ‘ ‘: ... print ‘ok‘ ... ok >>> if None: ... print ‘ok‘ ... >>> if 3 > 10: ... print ‘ok‘ ... else: ... print ‘no‘ ... no
扩展if语句结构
扩展if条件语句语法
if expression1:
if_suite
elif expression2:
elif_suite
else:
else_suite
只有满足相关条件,相应的子语句才会执行
没有switch/case这样的替代品
以上是关于Python if语句的主要内容,如果未能解决你的问题,请参考以下文章