如何在 Python 中捕获 FloatingPointError 异常?

pythonserver side programmingprogramming

当浮点异常控制 (fpectl) 开启时,浮点运算会导致错误,从而引发 FloatingPointError。启用 fpectl 需要使用 --with-fpectl 标志编译的解释器。

给定的代码重写如下,以处理异常并查找其类型。

示例

import sys
import math
import fpectl
try:
print 'Control off:', math.exp(700)
fpectl.turnon_sigfpe()
print 'Control on:', math.exp(1000)
except Exception as e:
print e
print sys.exc_type

输出

Control off: 1.01423205474e+304
Control on: in math_1
<type 'exceptions.FloatingPointError'>


相关文章