文件操作是编程中常见的任务之一,Python提供了一组内置函数和方法,用于打开、读取、写入和关闭文件。我们将详细讲解文本文件和CSV文件的读取与写入操作。
1. 文本文件的读取与写入
1.1 打开文件
使用 open()
函数打开文件。该函数的基本语法如下:
open(filename, mode)
filename
:文件名(字符串)。mode
:文件打开模式(字符串)。
常见的模式:
'r'
:读取(默认)。'w'
:写入(如果文件不存在会创建文件,存在则清空内容)。'a'
:追加(如果文件不存在会创建文件,存在则在末尾追加内容)。'b'
:二进制模式。't'
:文本模式(默认)。'+'
:读写模式(可以结合其他模式使用,如'r+'
)。
1.2 读取文件
示例:
# 读取文件内容
with open('example.txt', 'r') as file:
content = file.read()
print(content)
1.3 写入文件
示例:
# 写入文件内容
with open('example.txt', 'w') as file:
file.write("Hello, World!\n")
file.write("This is a test file.")
1.4 逐行读取文件
示例:
# 逐行读取文件内容
with open('example.txt', 'r') as file:
for line in file:
print(line, end='')
示例:读取并写入文本文件
# 写入文件内容
with open('example.txt', 'w') as file:
file.write("Hello, World!\n")
file.write("This is a test file.")
# 读取文件内容
with open('example.txt', 'r') as file:
content = file.read()
print(content)
2. CSV文件的读取与写入
CSV(逗号分隔值)文件是一种常见的数据文件格式,用于存储表格数据。Python提供了 csv
模块用于读取和写入CSV文件。
2.1 读取CSV文件
示例:
import csv
# 读取CSV文件内容
with open('example.csv', 'r') as file:
reader = csv.reader(file)
for row in reader:
print(row)
2.2 写入CSV文件
示例:
import csv
# 写入CSV文件内容
with open('example.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['Name', 'Age', 'City'])
writer.writerow(['Alice', 30, 'New York'])
writer.writerow(['Bob', 25, 'Los Angeles'])
2.3 使用字典读取和写入CSV文件
示例:读取CSV文件(字典形式)
import csv
# 读取CSV文件内容(字典形式)
with open('example.csv', 'r') as file:
reader = csv.DictReader(file)
for row in reader:
print(row)
示例:写入CSV文件(字典形式)
import csv
# 写入CSV文件内容(字典形式)
with open('example.csv', 'w', newline='') as file:
fieldnames = ['Name', 'Age', 'City']
writer = csv.DictWriter(file, fieldnames=fieldnames)
writer.writeheader()
writer.writerow({'Name': 'Alice', 'Age': 30, 'City': 'New York'})
writer.writerow({'Name': 'Bob', 'Age': 25, 'City': 'Los Angeles'})
3. 可运行的Python案例
下面是一个完整的Python程序,演示了文本文件和CSV文件的读取与写入操作。
import csv
# 文本文件操作
print("=== 文本文件操作 ===")
# 写入文本文件
with open('example.txt', 'w') as file:
file.write("Hello, World!\n")
file.write("This is a test file.")
# 读取文本文件
with open('example.txt', 'r') as file:
content = file.read()
print("读取的文本文件内容:")
print(content)
# CSV文件操作
print("\n=== CSV文件操作 ===")
# 写入CSV文件
with open('example.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerow(['Name', 'Age', 'City'])
writer.writerow(['Alice', 30, 'New York'])
writer.writerow(['Bob', 25, 'Los Angeles'])
# 读取CSV文件
with open('example.csv', 'r') as file:
reader = csv.reader(file)
print("读取的CSV文件内容:")
for row in reader:
print(row)
# 使用字典形式写入CSV文件
with open('example_dict.csv', 'w', newline='') as file:
fieldnames = ['Name', 'Age', 'City']
writer = csv.DictWriter(file, fieldnames=fieldnames)
writer.writeheader()
writer.writerow({'Name': 'Alice', 'Age': 30, 'City': 'New York'})
writer.writerow({'Name': 'Bob', 'Age': 25, 'City': 'Los Angeles'})
# 使用字典形式读取CSV文件
with open('example_dict.csv', 'r') as file:
reader = csv.DictReader(file)
print("读取的CSV文件内容(字典形式):")
for row in reader:
print(row)
可以将上面的代码复制到你的IDE中运行,观察程序的输出。这个案例综合了文本文件和CSV文件的读取与写入操作,帮助你理解和掌握这些操作。继续加油,学习Python会越来越有趣和有用!