共计 487 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 csv
模块来读取 CSV 文件。下面是读取 CSV 文件的基本步骤:
- 导入
csv
模块:import csv
- 打开 CSV 文件:使用
open()
函数打开 CSV 文件,并指定文件路径和打开模式。 - 创建
csv.reader
对象:使用csv.reader()
函数创建一个csv.reader
对象,将打开的文件作为参数传入。 - 使用
csv.reader
对象读取 CSV 文件:可以使用for
循环遍历csv.reader
对象来逐行读取 CSV 文件中的数据。
以下是一个示例代码,演示如何读取 CSV 文件并将其内容打印出来:
import csv
# 打开 CSV 文件
with open('data.csv', 'r') as file:
# 创建 csv.reader 对象
csv_reader = csv.reader(file)
# 读取 CSV 文件
for row in csv_reader:
print(row)
在上面的示例中,假设 CSV 文件的路径为 data.csv
。使用with open()
语句来打开文件可以确保在读取完毕后自动关闭文件,这是推荐的做法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完