摘要: python 读写 CSV 写入 CSV 1. 写入多行(writerows) import csv with open('test.csv', 'w', newline='') as f: writer = csv.writer(f) writer.writerows(["6","6","6"]) test.csv 内容如下 阅读全文
posted @ 2022-09-16 23:46 筱团 阅读(39) 评论(0) 推荐(0)