K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
成绩分级规则:高于等于80分标记为"A",60-79分标记为"B",低于60分标记为"C"。已知成绩列表为scores = [75, 92, 58, 84, 65]。
scores = [75, 92, 58, 84, 65]
["A" for x in scores if x >=80] + ["B" for x in scores if 60<=x<80] + ["C" for x in scores if x<60]
["A" if x >= 80 else "B" if x >= 60 else "C" for x in scores]
[x >=80 ? "A" : x >=60 ? "B" : "C" for x in scores]
{ "A" if x >=80 else "B" if x >=60 else "C" for x in scores }