有关if-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
一时想不明白啊!
2017-05-12
举报