if语句用来检验一个条件, 如果 条件为真,我们运行一块语句(称为 if-块 ), 否则 我们处理另外一块语句(称为 else-块 )。 else 从句是可选的。
使用if语句
if 条件
if 1 == 2: print 'One equals two'
if 1 == 1: print 'One equals one'
用 else if
x = 2
if x < 10:
print 'Less than ten'
elif 10 <= x < 20:
print 'Less than twenty'
else:
print 'Twenty or more'
第二个实例
x, y = 4, 3
if x < y:
smaller = x
else:
smaller = y
print smallersmaller = (x < y and [x] or [y])[0]
print smallersmaller = x if x < y else y
print smaller
时间: 2024-10-25 18:07:19