Python如何计算五个科目的总平均分及各科目占比?
- 内容介绍
- 文章标签
- 相关推荐
本文共计327个文字,预计阅读时间需要2分钟。
编写一个Python程序,通过一个例子找到五个科学项目的总平均值和百分比。
python定义五个科学项目的分数scores=[85, 90, 78, 92, 88]
计算总分total_score=sum(scores)
计算平均值average_score=total_score / len(scores)
计算百分比percentages=[score / total_score * 100 for score in scores]
输出结果print(总分:, total_score)print(平均值:, average_score)print(百分比:, percentages)
写一个Python程序,通过一个例子找到五个科目的总平均值和百分比。Python程序查找五个科目的总平均值写一个 Python 程序,通过一个例子找到五个科目的总平均值和百分比。
Python 程序查找五个科目的总平均值和百分比示例
这个 python 程序允许用户为五个科目输入五个不同的分数。接下来, Python 找到这五个主体的总数、平均值和百分比。对于这个 python 程序,我们使用算术运算符来执行算术运算。
# Python Program to find Total, Average, and Percentage of Five Subjectsenglish = float(input("Please enter English Marks: "))math = float(input("Please enter Math score: "))computers = float(input("Please enter Computer Marks: "))physics = float(input("Please enter Physics Marks: "))chemistry = float(input("Please enter Chemistry Marks: "))total = english + math + computers + physics + chemistryaverage = total / 5percentage = (total / 500) * 100print("\nTotal Marks = %.2f" %total)print("Average Marks = %.2f" %average)print("Marks Percentage = %.2f" %percentage)
本文共计327个文字,预计阅读时间需要2分钟。
编写一个Python程序,通过一个例子找到五个科学项目的总平均值和百分比。
python定义五个科学项目的分数scores=[85, 90, 78, 92, 88]
计算总分total_score=sum(scores)
计算平均值average_score=total_score / len(scores)
计算百分比percentages=[score / total_score * 100 for score in scores]
输出结果print(总分:, total_score)print(平均值:, average_score)print(百分比:, percentages)
写一个Python程序,通过一个例子找到五个科目的总平均值和百分比。Python程序查找五个科目的总平均值写一个 Python 程序,通过一个例子找到五个科目的总平均值和百分比。
Python 程序查找五个科目的总平均值和百分比示例
这个 python 程序允许用户为五个科目输入五个不同的分数。接下来, Python 找到这五个主体的总数、平均值和百分比。对于这个 python 程序,我们使用算术运算符来执行算术运算。
# Python Program to find Total, Average, and Percentage of Five Subjectsenglish = float(input("Please enter English Marks: "))math = float(input("Please enter Math score: "))computers = float(input("Please enter Computer Marks: "))physics = float(input("Please enter Physics Marks: "))chemistry = float(input("Please enter Chemistry Marks: "))total = english + math + computers + physics + chemistryaverage = total / 5percentage = (total / 500) * 100print("\nTotal Marks = %.2f" %total)print("Average Marks = %.2f" %average)print("Marks Percentage = %.2f" %percentage)

