成绩统计python代码
时间: 2023-11-16 08:58:13 浏览: 233
这段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
```
相关问题
学生成绩统计代码Python
在Python中,我们可以编写一段简单的代码来统计学生成绩。这里假设我们有一个包含学生ID和成绩的数据结构,比如列表或字典。以下是一个基础示例:
```python
# 定义一个学生成绩数据结构,例如字典
students = [
{"id": 1, "score": 90},
{"id": 2, "score": 85},
{"id": 3, "score": 95},
{"id": 4, "score": 78},
# 更多学生...
]
# 统计总分、平均分以及最高分和最低分
total_score = sum(student["score"] for student in students)
average_score = total_score / len(students)
def find_max_min(scores):
max_score = max(scores, key=scores.get)
min_score = min(scores, key=scores.get)
return max_score, min_score
max_score, min_score = find_max_min({student["id"]: student["score"] for student in students})
print("总分:", total_score)
print("平均分:", average_score)
print("最高分:", max_score, "学生ID:", [id for id, score in students if score == max_score][0])
print("最低分:", min_score, "学生ID:", [id for id, score in students if score == min_score][0])
Python成绩统计代码
Python成绩统计代码可以用于计算一个班级的成绩情况,包括总分、平均分、最高分、最低分等。一般情况下,这种代码的实现需要用到列表、循环和条件语句等基础知识。
下面是一个简单的Python成绩统计代码示例:
```
# 定义一个列表,存放学生成绩
scores = [85, 76, 92, 88, 79, 91, 90, 77, 84, 80]
# 计算总分和平均分
total = sum(scores)
average = total / len(scores)
# 计算最高分和最低分
max_score = max(scores)
min_score = min(scores)
# 输出统计结果
print("总分:", total)
print("平均分:", average)
print("最高分:", max_score)
print("最低分:", min_score)
```
阅读全文