Python 学生成绩转换程序:百分制转字母等级
score = float(input('请输入学生成绩:'))
if score >= 90: print('A') elif score >= 80: print('B') elif score >= 70: print('C') elif score >= 60: print('D') else: print('E')
原文地址: https://www.cveoy.top/t/topic/orla 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
score = float(input('请输入学生成绩:'))
if score >= 90: print('A') elif score >= 80: print('B') elif score >= 70: print('C') elif score >= 60: print('D') else: print('E')
原文地址: https://www.cveoy.top/t/topic/orla 著作权归作者所有。请勿转载和采集!