CSV文件的基本操作
Posted 嘟嘟小冰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSV文件的基本操作相关的知识,希望对你有一定的参考价值。
# hanbb # come on!!! import csv # 文件的整体读取 examplefile= open(‘E:\\download\es.txt‘) # 打开文件 examplereader = csv.reader(examplefile) # 读取文件 注意不能直接访问文件名字,必须先打开 examplerdata = list(examplereader) # 将返回为内容变成列表 操作 # 文件的逐行读取 openfile = open(‘E:\\download\es.txt‘) # 先打开 readfile = csv.reader(openfile) # 读取 #for row in readfile: # 循环读取 #print("row # " + str(readfile.line_num)+ ‘ ‘ +str(row)) # 文件的写入 file = open(‘E:\\download\writer.csv‘,‘w‘,newline=‘‘) # 打开的文件名称,写入模式,不写newline=‘‘会出现行间距变大 writerfile = csv.writer(file) # 写入命令 writerfile.writerow([‘name‘,‘address‘,‘city‘,‘state‘]) # 写入内容 writerfile.writerow([‘hbb‘,‘hangzhou‘,‘hangzhou‘,‘china‘]) file.close() # 关闭文件
以上是关于CSV文件的基本操作的主要内容,如果未能解决你的问题,请参考以下文章