利用条件运算符的嵌套来完成此题
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))
转载于:https://www.cnblogs.com/fanren224/p/8457268.html
转载请注明原文地址: https://mac.8miu.com/read-11777.html