python文件读取和保存
import os
# 列出当前路径下所有的文件
files = os.listdir("./")
print(files[3])
# 加载指定文件
# 方法一
# 新建一个文件流
# fp = open(files[4], 'r', encoding="UTF-8")
# # 获取所有的文本
# text = fp.read()
# print(text)
# # 读取所有的行
# lines = fp.readlines()
# # 关闭文件流
# fp.close()
# 方法二
with open(files[3], "r", encoding="utf-8") as fp:
text2 = fp.read()
lines2 = fp.readlines()
print(lines2)
# 文件的保存
with open("data.txt", "w", encoding="utf-8") as fp:
fp.write("hello world 火星黑洞")
主要要查看files这个list下哪一个是文本哦,确定读取的是自己想读取的