在Python中,使用def
关键字定义函数时,可以使用try
和except
语句来处理函数内部的异常。以下是一个示例:
def divide(a, b):
try:
result = a / b
except ZeroDivisionError:
print("Error: Division by zero is not allowed.")
return None
except TypeError:
print("Error: Both inputs must be numbers.")
return None
else:
return result
# 测试函数
print(divide(6, 3)) # 输出:2.0
print(divide(6, 0)) # 输出:Error: Division by zero is not allowed.
print(divide(6, "a")) # 输出:Error: Both inputs must be numbers.
在这个示例中,我们定义了一个名为divide
的函数,它接受两个参数a
和b
。在try
块中,我们尝试执行除法操作。如果遇到ZeroDivisionError
或TypeError
异常,我们将在相应的except
块中处理它们。如果没有异常发生,我们将在else
块中返回结果。