为了账号安全,请及时绑定邮箱和手机立即绑定

Python 2.7.10运行带参数装饰器报错: 'NoneType' object is not callable

import time
def performance(unit):
    def fn(f):
        def printtime(*args,**kw):
            t1=time.time()
            r=f(*args,**kw)
            t2=time.time()
            t = (t2 - t1)*1000 if unit =='ms' else (t2 - t1)
            print 'call %s() in %f %s'%(f.__name__,t,unit)
            return r
        return printtime
 return fn
@performance('ms')
def factorial(n):
    return reduce(lambda x,y: x*y, range(1, n+1))

print factorial(10)

正在回答

2 回答

可以运行。。http://img1.sycdn.imooc.com//56dac1ca0001961406050603.jpg

0 回复 有任何疑惑可以回复我~

缩进格式不对。。return fn

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

Python 2.7.10运行带参数装饰器报错: 'NoneType' object is not callable

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信