当前位置 : 主页 > 网络编程 > 其它编程 >

Python程序:计算五个科目的总平均值和百分比

来源:互联网 收集:自由互联 发布时间:2023-07-02
写一个Python程序,通过一个例子找到五个科目的总平均值和百分比。Python程序查找五个科目的总平均值 写一个 Python 程序,通过一个例子找到五个科目的总平均值和百分比。 Python 程序查
写一个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)

Python Program to find Total Average and Percentage of Five Subjects 1

上一篇:BZOJ2986:NonSquarefreeNumbers[容斥原理二分]
下一篇:没有了
网友评论