Python利用條件運算子輸出學生成績等級 阿新 • • 發佈:2021-01-20 技術標籤:Pythonpython 1.題目 利用條件運算子的巢狀來完成此題:學習成績>=90分的同學用A表示,60-89分之間的用B表示,60分以下的用C表示。 2.程式分析 (a>b)?a:b這是條件運算子的基本例子(三目運算子)。 from pip._vendor.distlib.compat import raw_input score = int(raw_input('請輸入分數:\n')) if score >= 90: grade = 'A' elif score >= 60: grade = 'B' else: grade = 'C' print('該分數%d屬於%s等級' % (score, grade))