我写了一个小脚本,每小时从网站读取并搜索某个字符串。这个字符串是我想要计算的数字。
如果我使用“nohup python3 / path / to / script&”运行脚本它工作了一段时间。几天后某些天甚至是弱点,脚本停止使用“〜/ nohup”中的错误输出,即float()无法转换第41行中的字符串。
line 41: current_value = float(html_content[temperature_pos_begin:temperature_pos_end])
答案 0 :(得分:2)
使用异常处理程序查看导致错误的原因。如果没有温度,他们可能会使用某种占位符。
try:
current_value = float(html_content[temperature_pos_begin:temperature_pos_end])
except ValueError:
print "Failed to convert %r to a float"%html_content[temperature_pos_begin:temperature_pos_end]
current_value = None # or something that makes sense