SSLC 分数百分比计算器:
计算总分百分比,可以使用公式:
分数百分比 =(获得的总分数/可用分数)* 100
计算总分百分比的步骤如下:
-Add up the total points earned -Add up the total points possible -Divide the total points earned by the total points possible -Multiply the result by 100
例子:
468/500*100=93.6
print("Welcome to SSLC Marksheet") tamil=int(input("Tamil mark : ")) english=int(input("English mark : ")) maths=int(input("Maths mark : ")) science=int(input("Science mark : ")) social=int(input("Social mark : ")) result=tamil english maths science social print("Total Mark :", result) max_mark=[tamil,english,maths,science,social] percent=result/(len(max_mark)*100)*100 print("Percentage (%):",round(percent,2))
输出:
Welcome to SSLC Marksheet Tamil mark : 98 English mark : 88 Maths mark : 98 Science mark : 88 Social mark : 96 Total Mark : 468 Percentage (%): 93.6
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3