课程
/后端开发
/Python
/python进阶
File "index.py", line 6 r = f(*args, **kw) ^ IndentationError: unexpected indent
2018-12-14
源自:python进阶 2-13
正在回答
和正确的代码的差别就在我标记的地方
慕少0328846
qq_友人A_28 提问者 回复 慕少0328846
雨过云舒 回复 qq_友人A_28 提问者
def wrapper(*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()... %f%s'%(f.__name__,t,unit)
return r
return wrapper
代码缩进 四个空格
qq_友人A_28 提问者
空格和缩进可能有问题,检查下tab和空格
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计