python编程—求学生平均成绩

- 输入学生姓名
- 依次输入学生的三门科目成绩
- 计算该学生的平均成绩,并打印
- 平均成绩保留一位小数
- 计算语文成绩占总成绩的百分比,并打印
Name = input("Student Name:")
Chinese = float(input("Chinese Score:"))
Math = float(input("Math Score:"))
English = float(input("English Score:"))

# SumScore
SumScore = Chinese + Math + English
# AverageScore
AvgScore = SumScore / 3

ChinesePercent = (Chinese / SumScore) * 100

print('%s ChineseScore is%.1f' % (Name, AvgScore))
print('ChinesePercent%.2f%%' % ChinesePercent)

python编程—求学生平均成绩_第1张图片

执行结果如下:
python编程—求学生平均成绩_第2张图片

你可能感兴趣的:(python编程—求学生平均成绩)