gpt4 book ai didi

Python csv.reader : How do I return to the top of the file?

转载 作者:IT老高 更新时间:2023-10-28 20:34:12 25 4
gpt4 key购买 nike

当我使用 csv.reader 浏览文件时,如何返回文件顶部。如果我使用普通文件执行此操作,我可以执行“file.seek(0)”之类的操作。 csv 模块有类似的东西吗?

提前谢谢;)

最佳答案

您可以直接查找文件。例如:

>>> f = open("csv.txt")
>>> c = csv.reader(f)
>>> for row in c: print row
['1', '2', '3']
['4', '5', '6']
>>> f.seek(0)
>>> for row in c: print row # again
['1', '2', '3']
['4', '5', '6']

关于Python csv.reader : How do I return to the top of the file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/431752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com