if-elif-else
score = 85
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failed'
这个85也会大于60 为什么只输出大于80 的good 不会输出大于60 的passed
score = 85
if score>=90:
print 'excellent'
elif score>=80:
print 'good'
elif score>=60:
print 'passed'
else:
print 'failed'
这个85也会大于60 为什么只输出大于80 的good 不会输出大于60 的passed
2016-11-09
举报