[20180603]Python读写csv

Posted 天使冰王

tags:

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

原文:https://docs.python.org/3/library/csv.html

进入python官网后,选择document,然后选择library reference。

读取:

import csv
with open(eggs.csv, newline=‘‘) as csvfile:
 spamreader = csv.reader(csvfile, delimiter= , quotechar=|)
 for row in spamreader:
 print(, .join(row))

写入:

import csv
with open(eggs.csv, w, newline=‘‘) as csvfile:
    spamwriter = csv.writer(csvfile, delimiter= ,
                            quotechar=|, quoting=csv.QUOTE_MINIMAL)
    spamwriter.writerow([Spam] * 5 + [Baked Beans])
    spamwriter.writerow([Spam, Lovely Spam, Wonderful Spam])

 

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

Python csv模块(读写文件)

Python读写CSV

python3使用csv模块读写csv文件

python读写csv文件

python3使用csv模块读写csv文件

Python: 对CSV文件读写