赞
踩
if condition:
语句1
语句2
......
举例:
if True:
print("T")
运行结果:

if condition:
语句1
语句2
......
else:
语句1
语句2
......
举例:
price = 6300
money = 5000
if money >= price:
print("购买英雄成功")
else:
print("金币不足,请充值!!!")
运行结果:

if condition1:
语句1
elif condition2:
语句2
elif condition3:
语句3
......
elif conditionN:
语句N
else:(可选)
语句N+1
举例:
score = 90
if score <= 60:
print("D")
elif score <= 70:
print("C")
elif score <= 85:
print("B")
else:
print("A")
运行结果:

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。