Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # b_decorator.py
- def world(func):
- def wrapper():
- return func() + " World!"
- return wrapper
- @world
- def hello():
- return "Hello"
- print(hello())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement