2021
09-07
09-07
python csv一些基本操作总结
一、读取数据csv.readercsv.reader传入的可以是列表或者文件对象,返回的是一个可迭代的对象,需要使用for循环遍历path="C:\\Users\\A539\\Desktop\\1.csv"withopen(path,'r')asfp:lines=csv.reader(fp)forlineinlines:print(line)print(type(line))line的格式为list二、写入数据csv.writer将一个列表写入csv文件list1=[100,200,300,400,500]list2=[[500,600,700,800,900],...
继续阅读 >