【发布时间】:2018-02-23 13:38:04
【问题描述】:
我有一个从 CSV 文件读取并检查记录是否满足条件的 python 脚本。
- 如果是则系统显示结果
- 如果没有,系统会根据错误引发异常。
csv 文件包含一个具有浮点值的文件,但其中一些记录可能没有任何值,因此将为空。
问题是如果单元格为空,系统会显示此 ValueError :
could not convert string to float:
而不是我写的异常。
raise Exception("this Record has empty value")
- row[0]==> 日期类型 Date
- row[10]==> 风速型浮子
- row[11]==> 雾类型布尔
代码:
import csv
mydelimeter = csv.excel()
mydelimeter.delimiter=";"
myfile = open("C:/Users/test/Documents/R_projects/homework/rdu-weather-history.csv")
# read the first line in the opened file ==> Header
myfile.readline()
myreader=csv.reader(myfile,mydelimeter)
mywind,mydate=[],[]
minTemp, maxTemp = [],[]
fastwindspeed, fog=[],[]
'''
create a variable that handle values of the 3 fields ==> Date - fastest5secwindspeed - fog
and display the result where
fog ==> Yes and highest speed more than 10.
'''
for row in myreader:
try:
if row[11] =="Yes":
if float(row[10]) < 10.0:
raise Exception( 'the wind speed is below 10 mph in ' + row[0] )
if row[10] in (None, ""):
raise Exception("this Record has empty value")
print(row[0],row[10],row[11])
except Exception as e:
print("{}".format(e))
myfile.close()
【问题讨论】:
-
在尝试转换之前测试它是否为空。
-
例如检查是否为空,见stackoverflow.com/questions/9573244/…
-
@ThierryLathuille 如果 row[10] in (None, ""): raise Exception("this Record has empty value")