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

第六行的t2后面的()忘了写,报错内容是指向第10行(unsupported operand type(s) for -: 'builtin_function_or_method' and 'float')

import time

def performance(f):

    def fn(*args,**kw):

        t1=time.time()

        r=f(*args,**kw)

        t2=time.time()

        print 'call %s() in %f s'%(f.__name__,(t2-t1))

        return r

    return fn

@performance

def factorial(n):

    return reduce(lambda x,y: x*y, range(1, n+1))

print factorial(10)


正在回答

2 回答

f.__name__ 这个位置输入错误,应该是 f._ _name_ _,是两个下划线

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

Traceback (most recent call last):

  File "D:\test\test.py", line 15, in <module>

    print factorial(10)

  File "D:\test\test.py", line 8, in fn

    print 'call %s() in %f s'%(f.__name__,(t2-t1))

TypeError: unsupported operand type(s) for -: 'builtin_function_or_method' and 'float'

这段报错是什么意思呢?

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

举报

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

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

进入课程

第六行的t2后面的()忘了写,报错内容是指向第10行(unsupported operand type(s) for -: 'builtin_function_or_method' and 'float')

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