python CSV读写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python CSV读写相关的知识,希望对你有一定的参考价值。

import csv
fname = 'testcsv.csv'
with open(fname,'wb') as csvfile: # 解决写入空行问题 使用wb不会再每一行后面插入空行
    csvwriter = csv.writer(csvfile,delimiter=',')
    lst= [[1,2,3],[4,5,6]]
    for item in lst:
        csvwriter.writerow(item)
# 读取操作
with open(fname,'r') as csvfile:
    rows = csv.reader(csvfile)
    for row in rows:
        print row
        print type(row) # 类型为一个list

以上是关于python CSV读写的主要内容,如果未能解决你的问题,请参考以下文章

python3使用csv模块读写csv文件

python读写csv文件

python3使用csv模块读写csv文件

Python: 对CSV文件读写

Python-csv模块读写csv文件

python读写csv文件