当前位置:   article > 正文

Python 练习实例15_jupyter学生成绩

jupyter学生成绩

题目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))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

这题比较简单

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/92457
推荐阅读
相关标签
  

闽ICP备14008679号