摘要:
下面代码演示了不使用装饰器实现用户登陆功能的小程序,在python3.x下可正常运行 #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Nov 26 15:26:58 2019 @author: root """ de 阅读全文
摘要:
下面的python小程序,给出了一个带参数的装饰器的应用 import time def logger(flag): def show_time(f): def inner(x,y): start = time.time() f(x,y) end = time.time() print(end - 阅读全文
摘要:
python装饰器的作用就是在不想改变原函数代码的情况下,增加新的功能.主要应用了python闭包的概念,现在用1个小例子说明 import time def foo(): time.sleep(1) def bar(): time.sleep(2) def show_time(f): def in 阅读全文