from itertools import islice
with open(r'file.csv',encoding='utf-8',mode='r') as file_read:
for line in islice(file_read,0,None):
read = file_read.readline()
while read:
do something
read = file_read.readline()
file_read.close()
Python中使用open读入csv文件时如何跳过表头
于 2023-05-09 18:45:44 首次发布
该代码片段展示了如何使用Python的itertools.islice函数配合with语句来打开一个名为file.csv的文件,以UTF-8编码读取。它逐行读取文件内容,执行dosomething操作,然后继续读取下一行,直到文件结束。
摘要由CSDN通过智能技术生成