摘要: import csv #导入csv模块,该模块包含于python标准库中 filename='111.csv' with open(filename,'r')as file: #1.创建阅读器对象 reader=csv.reader(file) #2.读取文件头信息 header_row=next( 阅读全文
posted @ 2022-02-16 18:28 呦呦南山 阅读(444) 评论(0) 推荐(0) 编辑