Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created June 1, 2021 16:20
Show Gist options
  • Save thinkphp/987a64c65b52cf6cf920451b24396e3e to your computer and use it in GitHub Desktop.
Save thinkphp/987a64c65b52cf6cf920451b24396e3e to your computer and use it in GitHub Desktop.
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