使用Python免费批量查询企业司法信息( 二 )


数据存储
【使用Python免费批量查询企业司法信息】def save_to_csv(data):with open(output_file, 'a', newline='') as file:writer = csv.writer(file)for sublist in data:writer.writerow(sublist)