CSV文件读取:
【逐行读取】
# coding=utf-8
import csv
with open(r"D:\files\test.csv",mode='r') as csvFile:
reader = csv.reader(csvFile)
for row in reader:
print(row)
【读取某列】
with open(r"D:\files\test.csv",mode='r') as csvFile:
reader = csv.reader(csvFile)
column = [row[1] for row in reader]
print(column)
CSV文件读取教程

本文介绍了如何使用Python的csv模块来读取CSV文件,并提供了两种实用的方法:逐行读取和读取特定列。
1917

被折叠的 条评论
为什么被折叠?



