Python 练习实例15
python 练习实例15
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用a表示,60-89分之间的用b表示,60分以下的用c表示。
程序分析:程序分析:(a>b) ? a:b 这是条件运算符的基本例子。
程序源代码:
实例(python 2.x):
#!/usr/bin/python # -*- coding: utf-8 -*- score = int(raw_input('输入分数:\n')) if score >= 90: grade = 'a' elif score >= 60: grade = 'b' else: grade = 'c' print '%d 属于 %s' % (score,grade)
实例(python 3.x):
#!/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