赞
踩
题目15:
利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。
scoreList = [90, 60, 0]
def score(stud_score):
if stud_score >= scoreList[0]:
return 'A'
elif stud_score >= scoreList[1]:
return 'B'
return 'C'
stud_score = int(input('Plz put in student score:'))
print(score(stud_score))
这题比较简单
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。