摘要: 读取文件 with open(file_path, encoding='UTF-8') as file: lines = csv.reader(file, delimiter="#", quotechar='"') for row in lines: print(row) 读取list 注意:如果是 阅读全文
posted @ 2023-04-18 19:06 panda4671 阅读(154) 评论(0) 推荐(0) 编辑