How do I make function decorators and chain them together?

How do I make two decorators in Python that would do the following?

@make_bold
@make_italic
def say():
   return "Hello"

Calling say() should return:

"Hello"

← Назад к списку