def test_blocks(a, b):
try:
netice = a / b
except ZeroDivisionError:
return "Sıfıra bölmə xətası"
else:
return f"Nəticə: {netice}"
finally:
return "Nəticə"
print(test_blocks(10, 2))
print(test_blocks(10, 0))
funcC = funcA(funcB)
@funcA
def funcB.....