if 语句
if condition:
body
if
语句检查条件。如果它计算为 True
,它将执行 if
语句的主体。如果它评估为 False
,它会跳过身体。
if True:
print "It is true!"
>> It is true!
if False:
print "This won't get printed.."
条件可以是任何有效的表达式:
if 2 + 2 == 4:
print "I know math!"
>> I know math!