bir funksiyada iki rəqəmi topla
əvvəlcə salam yazan dekoratorun üzərində
sonra toplama funksiyasını çağırır
yazır hələlik
def hello(func):
def wrapper(a,b):
print('Salam')
result = func(a,b)
print("Görüşərik")
return result
return wrapper
@hello_bye_dec
def add_numbers(a,b):
return a+b
Print(add_numbers(2,3))