Python有许多处理文本文件的库,以下是其中一些常用的库:
open()函数:Python内置的函数,可以用来打开文本文件并读取或写入其中的内容。# 打开文件并读取内容file = open('filename.txt', 'r')content = file.read()file.close()# 打开文件并写入内容file = open('filename.txt', 'w')file.write('Hello, World!')file.close()os库:Python的标准库之一,提供了许多与操作系统相关的函数,包括文件的读写操作。import os# 读取文件内容content = os.popen('cat filename.txt').read()# 写入文件内容os.popen('echo "Hello, World!" > filename.txt')io库:Python的标准库之一,提供了用于处理输入和输出流的工具。import io# 打开文件并读取内容with io.open('filename.txt', 'r', encoding='utf-8') as file: content = file.read()# 打开文件并写入内容with io.open('filename.txt', 'w', encoding='utf-8') as file: file.write('Hello, World!')csv库:Python的标准库之一,用于处理逗号分隔值(CSV)文件。import csv# 读取CSV文件内容with open('filename.csv', 'r') as file: reader = csv.reader(file) for row in reader: print(row)# 写入CSV文件内容with open('filename.csv', 'w') as file: writer = csv.writer(file) writer.writerow(['Name', 'Age']) writer.writerow(['John', '25'])pandas库:第三方库,用于处理和分析数据。import pandas as pd# 读取CSV文件内容df = pd.read_csv('filename.csv')# 写入CSV文件内容df.to_csv('filename.csv', index=False)这只是一些常用的库,如果你有特定的需求,还可以根据情况选择其他适合的库。

