摘要: import csv def get_lines(filepath): with open(filepath) as file_object: lines=set(file_object.readlines()) return lines def new_csv(lines): fileindex=0 count=len(lin... 阅读全文
posted @ 2017-10-26 10:47 wangway 阅读(4085) 评论(0) 推荐(0) 编辑