gpt4 book ai didi

python - 使用 WHILE 循环解析 excel 文档 (Python)

转载 作者:行者123 更新时间:2023-12-01 23:57:17 25 4
gpt4 key购买 nike

我通过阅读 Kent D. Lee 的 Python 编程基础知识 自学 Python。在一个练习中,我被要求使用 while 循环解析 excel 文档。我知道如何用 for 来做到这一点,但建议使用 while ,因为表格的第一行只是每一行的描述,因此我想省略它。这是我的 for 代码:

file = open("Nissan2.cvs", "r")

for line in file:
lst = line.split(",")
print(lst)

为了给我想要的信息,我直接从文档中删除了第一行,但这不是正确的方法,而且我对导入库不感兴趣,因为我还没有被介绍给他们。提前致谢!

最佳答案

如果你想要一个 while 循环,你可以使用:

line = file.readline()

while line:
lst = line.split(",")
print(lst)
line = file.readline()

file.close()

不要忘记使用 file.close() 关闭文件处理程序

关于python - 使用 WHILE 循环解析 excel 文档 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62543294/

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