相关文章推荐
python读取cvs python读取csv文件代码

python读取csv文件示例(python操作csv)代码如下: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

 
推荐文章