【程序15】成绩>=90分用A表示,60-89分用B表示, 60分以下用C表示。

利用条件运算符的嵌套来完成此题

score = int(input('input score:'))
if score >= 90:
    grade = 'A'
elif score >= 60:
    grade = 'B'
else:
    grade = 'C'

print('%d belongs to %s' % (score,grade))
posted @ 2017-03-23 15:42  fanren224  阅读(222)  评论(0编辑  收藏  举报