标签: python csv
是否可以在python上只加载一行csv文件? 我有一个巨大的csv文件,我只是想复制它的标题。我能以记忆效率的方式做到这一点吗?
答案 0 :(得分:4)
在读者对象上使用next()。
next()
headerrow = next(reader)
答案 1 :(得分:4)
使用next:
next
with open('your_file.csv') as f: reader = csv.reader(f) header = next(reader)