python3从第二行开始读取csv
2022/1/24 20:06:24
本文主要是介绍python3从第二行开始读取csv,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
python3从第二行开始读取csv
- 实例代码
- 将读取的信息映射到字典
- csv写入数据
参考: https://geek-docs.com/python/python-tutorial/python-csv.html
有时候csv第一行会作为注释信息,而读取配置时不需要读取第一行
实例代码
def read_n2_csv(filepath): """ 从第2行开始读取csv文件 :param filepath: :return: """ with open(filepath) as f: reader = csv.reader(f) next(reader) for i in reader: print(i)
将读取的信息映射到字典
def readcsv_file(filepath): """ 读取csv文件 :param filepath: 传入文件路径 :return: """ with open(filepath) as f: reader = csv.DictReader(f) for row in reader: # 这里传入首行的key print(row['commit'], row['platform'], row['workload'])
csv写入数据
import csv # 要写入的数据 nms = [[1, 2, 3, 4, 5, 6], [7, 8, 9, 10, 11, 12]] with open(filepath, 'w') as f: writer = csv.writer(f) for row in nms: writer.writerow(row)
这篇关于python3从第二行开始读取csv的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型