可以使用Python的內置函數max()
和min()
來求最高分和最低分。
假設有一個學生成績列表scores
,可以使用以下代碼求最高分和最低分:
scores = [80, 90, 70, 85, 95]
highest_score = max(scores)
lowest_score = min(scores)
print("最高分:", highest_score)
print("最低分:", lowest_score)
輸出結果為:
最高分: 95
最低分: 70
這樣就可以求得列表中的最高分和最低分。