Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created June 1, 2021 16:20
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
def make_bold(f):
def bold_wrapper():
return "<b>" + f() +"</b>"
return bold_wrapper
def make_italic(f):
def italic_wrapper():
return "<i>" + f() + "</i>"
return italic_wrapper
@make_bold
@make_italic
def hello():
return "Hello, Python!"
def main():
print(hello())
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment