处理文本文件是编程中的常见任务,无论是数据清理、准备还是格式化。在本教程中,我们将探索如何使用 Python 修改 .txt 文件,方法是在每行周围添加双引号 (") 并在末尾添加逗号 (,)。
本分步指南将帮助您有效地处理文本文件,无论其大小如何。
假设您有一个包含 5159 行的 .txt 文件,其中每行代表一个短语。您的目标是:
在每行的短语周围添加双引号 (")。
在每行末尾添加逗号 (,)。
将修改后的行保存到新文件中。
Hello World Python
"Hello", "World", "Python",
以下是使用 Python 完成此任务的方法。
第一步是读取.txt 文件的内容。 Python 内置的 open() 函数允许您轻松地从文件中读取行。
使用 Python 的字符串格式,我们将向每一行添加所需的双引号和逗号。
最后,将处理后的行写入新文件以保留原始数据。
下面是执行该任务的完整 Python 脚本:
# File paths input_file = "input.txt" # Replace with your input file path output_file = "output.txt" # Replace with your desired output file path # Step 1: Read the input file with open(input_file, "r") as file: lines = file.readlines() # Step 2: Process each line processed_lines = [f'"{line.strip()}",\n' for line in lines] # Step 3: Write to the output file with open(output_file, "w") as file: file.writelines(processed_lines) print(f"Processed {len(lines)} lines and saved to {output_file}.")
with open(input_file, "r") as file: lines = file.readlines()
processed_lines = [f'"{line.strip()}",\n' for line in lines]
line.strip() 删除每行中的任何前导或尾随空格或换行符。
f'"{line.strip()}",n' 通过用双引号括起来并附加逗号和换行符 (n) 来格式化每行。
with open(output_file, "w") as file: file.writelines(processed_lines)
python -m process_text
如果您的输入文件包含:
Hello World Python
输出文件将如下所示:
Hello World Python
使用Python,您可以快速有效地修改文本文件,即使它们包含数千行。该代码简单、可重用,并且可以适用于执行其他文本处理任务。
此解决方案对于为编程任务准备数据特别有用,例如将数据导入数据库或生成 JSON 或 CSV 等结构化格式。使用Python,可能性是无限的!
以上是如何使用 Python 向文本文件的每一行添加引号和逗号的详细内容。更多信息请关注PHP中文网其他相关文章!