python超详细基础文件操作【建议收藏】
# 打开文件
with open('example.txt', 'r') as file:
content = file.read()
print(content)
# 写入文件
with open('example.txt', 'w') as file:
file.write('Hello, World!')
# 追加模式写入文件
with open('example.txt', 'a') as file:
file.write('\nHello again!')
# 读取文件的第一行
with open('example.txt', 'r') as file:
first_line = file.readline()
print(first_line)
# 读取文件的前三行
with open('example.txt', 'r') as file:
lines = [line.rstrip() for line in file.readlines()[:3]]
print(lines)
# 文件复制
with open('example.txt', 'r') as source_file, open('copy.txt', 'w') as dest_file:
dest_file.write(source_file.read())
# 判断文件是否存在
import os
file_path = 'example.txt'
if os.path.exists(file_path):
print(f"{file_path} exists.")
else:
print(f"{file_path} does not exist.")
# 获取文件大小
import os
file_size = os.path.getsize('example.txt')
print(f"Size of example.txt is: {file_size} bytes.")
这段代码展示了如何在Python中进行基本的文件操作,包括文件的打开、读取、写入、追加、读取特定行以及复制文件。同时,还展示了如何检查文件是否存在以及获取文件的大小。这些操作是学习任何编程语言文件处理部分都需要掌握的基础知识。
评论已关闭