美文网首页
Python 练习实例15

Python 练习实例15

作者: loinue | 来源:发表于2022-03-23 06:54 被阅读0次

    来自菜鸟教程
    https://www.runoob.com/python/python-exercise-example15.html

    题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。

    程序分析:程序分析:(a>b) ? a:b 这是条件运算符的基本例子。

    程序源代码:

    #!/usr/bin/python3
     
    score = int(input('输入分数:\n'))
    if score >= 90:
        grade = 'A'
    elif score >= 60:
        grade = 'B'
    else:
        grade = 'C'
     
    print ('%d 属于 %s' % (score,grade))
    

    以上实例输出结果为:

    输入分数:
    89
    89 属于 B

    相关文章

      网友评论

          本文标题:Python 练习实例15

          本文链接:https://www.haomeiwen.com/subject/nxbtdrtx.html