在 Python 中是否有更优雅的引发错误的方法?[具体情况]
Is there a more elegant way of raising error in Python?[specific case]
我完全不熟悉 Python 和一般的编程,所以我不太熟悉好的做法或以最充分/清晰的方式编写我的代码。我已经为一些数学运算编写了这个函数,我希望 Python 处理一些异常。
def sqrt_of_sum_by_product(numbers: tuple) -> float:
if prod(numbers) <= 0: # checking if the result is a positive num to prevent further operations
raise ValueError('cannot find sqrt of a negative number or divide by 0')
return float("{:.3f}".format(math.sqrt(sum(numbers) / prod(numbers))))
这段代码有效,我认为它已经足够清楚了,但我不确定像我那样引发异常是否是一个好习惯,我找不到答案。
我认为以这种方式引发异常是一种很好的做法。你也可以使用 try/except 实际得到一个异常,然后处理它。我不会质疑您对代码的使用。
是的,这是一个很好的做法,但有时您可能想要创建自己的错误。
例如:
class MyExeption(Exception):
_code = None
_message = None
def __init__(self, message=None, code=None):
self._code = message
self._message = code
现在您可以:
def sqrt_of_sum_by_product(numbers: tuple) -> float:
if prod(numbers) <= 0: # checking if the result is a positive num to prevent further operations
raise MyExeption('cannot find sqrt of a negative number or divide by 0', 'XXX')
return float("{:.3f}".format(math.sqrt(sum(numbers) / prod(numbers))))
我完全不熟悉 Python 和一般的编程,所以我不太熟悉好的做法或以最充分/清晰的方式编写我的代码。我已经为一些数学运算编写了这个函数,我希望 Python 处理一些异常。
def sqrt_of_sum_by_product(numbers: tuple) -> float:
if prod(numbers) <= 0: # checking if the result is a positive num to prevent further operations
raise ValueError('cannot find sqrt of a negative number or divide by 0')
return float("{:.3f}".format(math.sqrt(sum(numbers) / prod(numbers))))
这段代码有效,我认为它已经足够清楚了,但我不确定像我那样引发异常是否是一个好习惯,我找不到答案。
我认为以这种方式引发异常是一种很好的做法。你也可以使用 try/except 实际得到一个异常,然后处理它。我不会质疑您对代码的使用。
是的,这是一个很好的做法,但有时您可能想要创建自己的错误。 例如:
class MyExeption(Exception):
_code = None
_message = None
def __init__(self, message=None, code=None):
self._code = message
self._message = code
现在您可以:
def sqrt_of_sum_by_product(numbers: tuple) -> float:
if prod(numbers) <= 0: # checking if the result is a positive num to prevent further operations
raise MyExeption('cannot find sqrt of a negative number or divide by 0', 'XXX')
return float("{:.3f}".format(math.sqrt(sum(numbers) / prod(numbers))))