What is a higher-order function in the context of decorators?

What is a higher-order function in the context of decorators? Correct Answer A function that takes a function as an argument

Higher-order functions accept functions as arguments and/or return functions as results.

Related Questions

What is the purpose of the functools.wraps() function in decorators?
What is the purpose of the functools.partial function in decorators?
What are decorators in Python?
What is the primary purpose of using decorators?
What is a common use case of decorators?
How does the order of applying multiple decorators matter?