Python|文件操作题目
2021/12/8 22:18:37
本文主要是介绍Python|文件操作题目,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在本地电脑盘创建“Python+【项目名称】+【学号】+姓名”.doc文件。
操作过程截图记录到doc文件中。
- 在桌面新建文件夹test,并放入原始数据test.txt;
- 在Python代码中打开test.txt文件;
- 在Python代码中逐行读取test.txt数据;
- 对test.txt中的数据按分数进行从高到低排序;
- 保存排好序的文件,保存位置为文件夹test根目录,文件名为finally.txt;
答案:
f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r') line = f.readlines() print(sorted(line,key=lambda s:s[6: ],reverse=True)) nums = sorted(line,key=lambda s:s[6:],reverse=True) with open(r'C:\Users\86151\Desktop\test\finally.txt',mode='w') as h: for each in nums: h.write(each)
我自己做的答案,太菜了,第四步就不能做出来。
f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r') for line in f: if (len(line.strip())==0):continue print(line.strip()) f.close()
尝试失败:
f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r')
for line in f:
if (len(line.strip()) == 0): continue
L = [ ]
L = line.strip()
n = L[-2:]
L1 = []
L1.append(n)
# print(n + '\n')
print(L1)
f.close()
这里是资料o
https://www.yuque.com/docs/share/661cba33-5ec0-43f2-b72a-69d1325f7061?#(密码:gu69) 《Python期末作业》
这篇关于Python|文件操作题目的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门