gpt4 book ai didi

python - 尝试在 python 中读取文件时处理异常的好方法是什么?

转载 作者:行者123 更新时间:2023-12-03 05:35:45 25 4
gpt4 key购买 nike

我想用 python 读取 .csv 文件。

  • 我不知道该文件是否存在。
  • 我当前的解决方案如下。我觉得这很草率,因为两个单独的异常测试尴尬地并列在一起。

有更好的方法吗?

import csv    
fName = "aFile.csv"

try:
with open(fName, 'r') as f:
reader = csv.reader(f)
for row in reader:
pass #do stuff here

except IOError:
print "Could not read file:", fName

最佳答案

这个怎么样:

try:
f = open(fname, 'rb')
except OSError:
print "Could not open/read file:", fname
sys.exit()

with f:
reader = csv.reader(f)
for row in reader:
pass #do stuff here

关于python - 尝试在 python 中读取文件时处理异常的好方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5627425/

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