“Основной пример декоратора” Ответ

# Декоратор

# decorator function
def outer(func):
    def inner():
        str1 = func() 
        return str1.upper() # addition of functionality
    return inner

@outer 
def print_str():
    return "good morning"

print(print_str())

# Output -> 'GOOD MORNING'
# A decorator is a function that takes another function as an argument, adds some kind of functionality to it and returns another function. Python decorators help add functionality to an existing code(function) which may aid in code reusability. 
Impossible Impala

Основной пример декоратора

def log_result(func):
  def inner():
    res = func()
    print(res)
    return res
Json Bourne

Ответы похожие на “Основной пример декоратора”

Вопросы похожие на “Основной пример декоратора”

Смотреть популярные ответы по языку

Смотреть другие языки программирования