一段时间后不需要的退出:错误无法将str转换为float

时间:2012-11-19 09:17:19

标签: python linux nohup

我写了一个小脚本,每小时从网站读取并搜索某个字符串。这个字符串是我想要计算的数字。

如果我使用“nohup python3 / path / to / script&”运行脚本它工作了一段时间。几天后某些天甚至是弱点,脚本停止使用“〜/ nohup”中的错误输出,即float()无法转换第41行中的字符串。

line 41: current_value = float(html_content[temperature_pos_begin:temperature_pos_end])

整个脚本:http://pastebin.com/AEY1Kafa

1 个答案:

答案 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