Python练习实例15

来源:互联网 发布:cms html5模板 编辑:程序博客网 时间:2024/06/06 00:00

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

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

#!/usr/bin/python#-*- coding:UTF-8 -*-score = int(input("Please ininput score:"))if score >= 90:    grade = 'A'elif score >= 60:    grade = 'B'else:    grade = 'C'print("%d belongs to %s"%(score,grade))

考察Python的if else嵌套

0 0