面试题答案
一键面试def divide_numbers(a, b):
try:
result = a / b
return result
except ZeroDivisionError:
return "不能除以零"
def divide_numbers(a, b):
try:
result = a / b
return result
except ZeroDivisionError:
return "不能除以零"