python读写csv文件
Posted hester-tang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读写csv文件相关的知识,希望对你有一定的参考价值。
博客https://www.cnblogs.com/en-heng/p/5630849.html介绍了如何利用pandas进行数据分析
import pandas as pd #任意的多组列表 a = [1,2,3] b = [4,5,6] #字典中的key值即为csv中列名 dataframe = pd.DataFrame({‘a_name‘:a,‘b_name‘:b}) #将DataFrame存储为csv,index表示是否显示行名,default=True dataframe.to_csv("test.csv",index=False,sep=‘,‘)
import pandas as pd data = pd.read_csv(‘test.csv‘)
import csv #python2可以用file替代open with open("test.csv","w") as csvfile: writer = csv.writer(csvfile) #先写入columns_name writer.writerow(["index","a_name","b_name"]) #写入多行用writerows writer.writerows([[0,1,3],[1,2,3],[2,3,4]])
import csv with open("test.csv","r") as csvfile: reader = csv.reader(csvfile) #这里不需要readlines for line in reader: print line
以上是关于python读写csv文件的主要内容,如果未能解决你的问题,请参考以下文章