python如何读取csv文件

python

Python读取CSV文件的三种方式

更多关于CSV文件的操作,可以参考这篇文章:《Python3爬虫进阶:CSV文件存储

普通方法读取:

with open("fileName.csv") as file:

    for line in file:

       print line

相关推荐:《Python教程》

用CSV标准库读取:

import csv

csv_reader = csv.reader(open("fileName.csv"))

for row in csv_reader:

    print row

用pandas读取:

import pandas as pd

data = pd.read_csv("fileName.csv")

print data

data = pd.read_table("fileName.csv",sep=",")

print data

以上是 python如何读取csv文件 的全部内容, 来源链接: utcz.com/z/523139.html

回到顶部