python读取csv文件的例子

发布时间:2019-08-10编辑:脚本学堂
python读取csv文件的小例子,学习下python操作csv的方法,有研究python编程的朋友做个参考。

例子,python读取csv文件。
代码:
 

复制代码 代码示例:
import csv
for line in open("test.csv"):
name,age,birthday = line.split(",")
name = name.strip(' trn');
age = age.strip(' trn');
birthday = birthday.strip(' trn');
print (name + 't' + age + 't' + birthday)

csv文件内容格式如下:
 

alice, 22, 1992/03/05
bob, 33, 1981/11/21
cart, 40, 1974/07/13