1 Star 0 Fork 0

北京大学-夏敏/python-learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
decorator.py 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
zszhangsu 提交于 2020-11-10 20:41 . add decorator
###装饰器示例####
import time
MAX=10000000
def decorator(function):
def wrapTheFunction(*args, **kwargs):
t1 = time.time()
function(*args, **kwargs)
t2 = time.time()
print("➡➡➡ Using Time: ", t2 - t1, "\n")
return wrapTheFunction
@decorator
def fun1(n):
sum=0
for i in range ( 1 , 10000000 ):
if i % 3 == 0 or i % 5 == 0 :
sum += i
print(sum)
return sum
def gaa_w(n):
return (n+1)*n/2
@decorator
def fun2(n):
sum=0
sum=3*gaa_w((n - 1) / 3) + 5 * gaa_w((n - 1) / 5) - 15 * gaa_w((n - 1) / 15)
print(sum)
return sum
fun1(MAX)
fun2(MAX)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/pkuecho/python-learn.git
git@gitee.com:pkuecho/python-learn.git
pkuecho
python-learn
python-learn
master

搜索帮助