python如何读取csv文件
Python读取CSV文件的三种方式
更多关于CSV文件的操作,可以参考这篇文章:《Python3爬虫进阶:CSV文件存储》
普通方法读取:
with open("fileName.csv") as file:for line in file:
print line
相关推荐:《Python教程》
用CSV标准库读取:
import csvcsv_reader = csv.reader(open("fileName.csv"))
for row in csv_reader:
print row
用pandas读取:
import pandas as pddata = pd.read_csv("fileName.csv")
print data
data = pd.read_table("fileName.csv",sep=",")
print data
以上是 python如何读取csv文件 的全部内容, 来源链接: utcz.com/z/523139.html