python读取csv文件示例(python操作csv)
2018-09-24 21:30
阅读:454
复制代码 代码如下:
import csv
for line in open(test.csv):
name,age,birthday = line.split(,)
name = name.strip( \t\r\n);
age = age.strip( \t\r\n);
birthday = birthday.strip( \t\r\n);
print (name + \t + age + \t + birthday)
csv文件
复制代码 代码如下:
alice,22,1992/03/05
bob,33,1981/11/21
cart,40,1974/07/13
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python读取csv文件示例(python操作csv)
文章链接:http://soscw.com/index.php/essay/17536.html
文章标题:python读取csv文件示例(python操作csv)
文章链接:http://soscw.com/index.php/essay/17536.html
评论
亲,登录后才可以留言!