最简单的条件语句:
if expression:
expr_true_suite
如上,if是关键字,expression是条件表达式,条件表达式支持多重条件判断,可以用布尔操作符and、or和not连接,expr_true_suite是代码块,expression为true时执行,代码块如果只有一行,上面的整个条件语句便可全部写到一行,但可读性差。
带elif和else的条件语句:
if expression1:
expr1_true_suite
elif expression2:
expr2_true_suite
elif expressionn:
exprn_true_suite
else:
none_of_the_above_suite
如上,语法同其它语言的条件语句类似,elif和else是可选的。
条件表达式实现三元操作符:
在c/c++中,三元操作符如下(e成立时执行x,否则执行y)——
e ? x : y
python模拟的三元操作符——
(e and [x] or [y])[0]
python三元操作符的实现——
x if e else y
来看几个判断实例:
>>> if 1 < x < 2: print('true') true
and 表示且
or 表示 或
>>> x
2
>>> if x == 2 or x == 3:
print(x)
2
如果 b 为真则返回a,否则返回 c
a if b else c
>>> ‘true’ if 1 < x