当前位置:  首页>> 技术小册>> Python合辑14-面向对象编程案例(下)

  1. def my_decorator(func):
  2. def wrapper():
  3. print("Step - 1")
  4. func()
  5. print("Step - 3")
  6. return wrapper
  7. @my_decorator
  8. def start_steps():
  9. print("Step - 2")
  10. start_steps()

Output:

  1. Step - 1
  2. Step - 2
  3. Step - 3

该分类下的相关小册推荐: