Python 将数据写入 csv 文件中并读取

将数据存放到csv文件中

import csv # 加载csv库

csvfile = open('test.csv', 'w',newline='', encoding="utf-8")
writer = csv.writer(csvfile)
writer.writerow(['岗位信息', '工资']) # 标题,写入一行
# data为数据
writer.writerows(data) # 数据,写入多行
csvfile.close()

读取csv中的数据内容

# 读取CSV文件,(“文件路径”,编码格式)
csvfile = open("test.csv",encoding="utf-8")
content = csv.reader(csvfile)
rows = [row for row in content]
print(rows)

 

你可能感兴趣的:(Python数据处理)