Created
October 31, 2014 21:49
-
-
Save gregorykremler/0972dcff8e861cc4fd87 to your computer and use it in GitHub Desktop.
decorator example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def makebold(fn): | |
def wrapped(): | |
return '<b>' + fn() + '</b>' | |
return wrapped | |
def makeitalic(fn): | |
def wrapped(): | |
return '<i>' + fn() + '</i>' | |
return wrapped | |
@makebold | |
@makeitalic | |
def hello(): | |
return "hello world" | |
print hello() ## returns <b><i>hello world</i></b> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment