TheAceHome

Untitled

Jun 14th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. def decor(func):
  2.     def warpper():
  3.         print("до")
  4.         func()
  5.         print("после")
  6.     return wrapper
  7.  
  8. def snow():
  9.     print("сама функция")
  10.  
  11.  
  12. snow=decor(snow)
  13. snow()
Advertisement
Add Comment
Please, Sign In to add comment