共计 480 个字符,预计需要花费 2 分钟才能阅读完成。
要删除某一行,你需要使用文件操作来重写文件,并将不需要的行跳过。以下是一个示例代码:
def delete_line(file_path, line_number):
with open(file_path, 'r') as file:
lines = file.readlines()
with open(file_path, 'w') as file:
for index, line in enumerate(lines):
if index != line_number - 1: # 跳过需要删除的行
file.write(line)
# 示例使用
delete_line('example.txt', 3) # 删除第 3 行
在这个示例中,delete_line
函数接收文件路径和要删除的行号作为参数。它首先打开文件,并将文件的内容读取到一个列表中。然后,它再次打开同一个文件,以写模式打开文件,并通过遍历列表来写入内容,跳过需要删除的行。请确保替换 'example.txt'
为你要处理的实际文件路径,以及 3
为你要删除的实际行号。
丸趣 TV 网 – 提供最优质的资源集合!
正文完