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

这两种写法有什么区别

 t1=time.time()

            r=f(*args,**kw)

            t2=time.time()

            if unit=='ms':

                t=(t2-t1)*1000

            elif unit=='s':

                t=t2-t1

            else:

                print 'none'

            print 'call %s() in %f%s'%(f.__name__,t,unit)

            return r

我一开始写成

 t1=time.time()

            r=f(*args,**kw)

            t2=time.time()

            t=t2-t1

            if unit=='ms':

                return t*1000

            elif unit=='s':

                return t

            else:

                print 'none'

            print 'call %s() in %f%s'%(f.__name__,t,unit)

            return r

为什么第二种最后一句print并没有打印呢? 仅仅打印了f的结果。先写一个t=t2-t1为什么不可以??

正在回答

2 回答

已经return了 函数已经结束

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

在你执行if语句的时候,这段函数已经结束了,程序识别到return语句时,会跳出循环体

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

举报

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

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

进入课程

这两种写法有什么区别

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