目录标题
- 前言
- 环境使用:
- 涉及知识点
- 代码展示
- 尾语
前言
嗨喽~大家好呀,这里是魔王呐 ❤ ~!
今天咱们试试用Python从文件中读取学生成绩,并计算最高分/最低分/平均分。
环境使用:
-
Python 3.8 解释器
-
Pycharm 编辑器
涉及知识点
-
文件读写
-
基础语法
-
字符串处理
-
循环遍历
-
代码展示
python资料、源码、教程\福利皆: 点击此处跳转文末名片获取
代码展示
模块
import platform
定义获取最高分、最低分及平均分函数
def compute_score():
scores = []
with open("./py023.txt", encoding="utf8") as fin:
for line in fin:
line = line.strip()
fields = line.split(",")
scores.append(int(fields[-1]))
max_score = max(scores)
min_score = min(scores)
avg_score = round(sum(scores) / len(scores), 2)
return max_score, min_score, avg_score
调用函数
max_score, min_score, avg_score = compute_score()
print("最高分:" + str(max_score) +
"\n" + "最低分:" + str(min_score) +
"\n" + "平均分:" + str(avg_score))
全部代码
import platform
print("待到红旗满天下,马踏东京赏樱花。富士山上扬汉旗,樱花树下醉胡姬。")
print("Python从文件中读取学生成绩,并计算最高分/最低分/平均分 \n")
def compute_score():
scores = []
# 源码、解答、教程皆+VX:qian97378
with open("./py023.txt", encoding="utf8") as fin:
for line in fin:
line = line.strip()
fields = line.split(",")
scores.append(int(fields[-1]))
max_score = max(scores)
min_score = min(scores)
avg_score = round(sum(scores) / len(scores), 2)
return max_score, min_score, avg_score
max_score, min_score, avg_score = compute_score()
print("最高分:" + str(max_score) +
"\n" + "最低分:" + str(min_score) +
"\n" + "平均分:" + str(avg_score))
print("Python 版本", platform.python_version())
尾语
感谢你观看我的文章呐~本次航班到这里就结束啦 🛬
希望本篇文章有对你带来帮助 🎉,有学习到一点知识~
躲起来的星星🍥也在努力发光,你也要努力加油(让我们一起努力叭)。