gpt4 book ai didi

python - 使用 Python 读取 CSV 文件

转载 作者:太空狗 更新时间:2023-10-29 19:33:25 24 4
gpt4 key购买 nike

请告诉我这段代码有什么问题,它出错了

import csv
with open('some.csv', 'rb') as f:
reader = csv.reader(f)
for row in reader:
print row

最佳答案

您使用的是哪个版本的 Python?

with 语句是 2.6 中的新内容 - 如果您使用的是 2.5,则需要 from __future__ import with_statement。如果你使用 Python 2.5 之前的版本,那么没有 with 语句,所以只写:

import csv
f = open('some.csv', 'rb')
reader = csv.reader(f)
for row in reader:
print row
f.close()

不过,更新到现代版本的 Python 确实更好。 Python 2.5 发布已经快 5 年了,目前 2.x 系列中的版本是 2.7

关于python - 使用 Python 读取 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5788521/

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