2

是否可以在 python 上仅加载一行 csv 文件?我有一个巨大的 csv 文件,我只想复制它的标题。我可以以一种内存有效的方式做到这一点吗?

4

2 回答 2

4

next()在阅读器对象上使用。

headerrow = next(reader)
于 2013-07-03T09:48:55.467 回答
4

使用next

with open('your_file.csv') as f:
    reader = csv.reader(f)
    header = next(reader)
于 2013-07-03T09:49:31.453 回答