成绩统计python代码
时间: 2023-11-16 17:58:13 浏览: 220
用机器学习的方法对学生成绩进行统计分析和预测。包括决策树算法、逻辑回归算法、随机森林算法等,用python.zip
5星 · 资源好评率100%
这段Python代码是用来统计学生考试成绩的。首先,通过输入一个整数n,表示学生人数,然后通过循环n次,将每个学生的成绩添加到一个列表中。接着,通过遍历列表,统计及格人数和优秀人数,并计算及格率和优秀率。最后,使用print函数输出结果,其中使用了f-string格式化字符串,round函数进行四舍五入和保留小数位数。
具体代码如下:
```
import os
import sys
n = int(input()) #将输入的数据转化为整型,因为默认是字符串类型
n_list = list() #定义一个空列表
for i in range(n): #生成1到n-1,步长为1的列表
n_list.append(int(input())) #尾加元素到列表中
a = 0 #及格人数
b = 0 #优秀人数
for x in n_list:
if x >= 60:
a += 1
if x >= 85:
b += 1
h = a / n * 100 #及格率
k = b / n * 100 #优秀率
print(f"{round(h)}%") #round四舍五入:round(2.3)->2
print(f"{round(k)}%") #一位小数:round(2.45,1)->2.5 #两位小数:round(2.675,1)->2.67
```
阅读全文