Python 練習(xí)實例15
python 練習(xí)實例15
題目:利用條件運算符的嵌套來完成此題:學(xué)習(xí)成績>=90分的同學(xué)用a表示,60-89分之間的用b表示,60分以下的用c表示。
程序分析:程序分析:(a>b) ? a:b 這是條件運算符的基本例子。
程序源代碼:
實例(python 2.x):
#!/usr/bin/python # -*- coding: utf-8 -*- score = int(raw_input('輸入分數(shù):\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('輸入分數(shù):\n')) if score >= 90: grade = 'a' elif score >= 60: grade = 'b' else: grade = 'c' print ('%d 屬于 %s' % (score,grade))
以上實例輸出結(jié)果為:
輸入分數(shù): 89 89 屬于 b