如何计算五个科目的总平均分及其各科目占比?
- 内容介绍
- 文章标签
- 相关推荐
本文共计319个文字,预计阅读时间需要2分钟。
python写一个Python程序,通过一个例子找到五个科目的总平均分和百分比值。
假设科目成绩为以下例子grades=[85, 90, 78, 92, 88]
计算总平均分average=sum(grades) / len(grades)
计算百分比percentages=[grade / average * 100 for grade in grades]
输出结果print(f五个科目的总平均分: {average:.2f})print(f五个科目的百分比: {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)
本文共计319个文字,预计阅读时间需要2分钟。
python写一个Python程序,通过一个例子找到五个科目的总平均分和百分比值。
假设科目成绩为以下例子grades=[85, 90, 78, 92, 88]
计算总平均分average=sum(grades) / len(grades)
计算百分比percentages=[grade / average * 100 for grade in grades]
输出结果print(f五个科目的总平均分: {average:.2f})print(f五个科目的百分比: {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)

