码迷,mamicode.com
首页 > 其他好文 > 详细

实现一个统计函数运行时间

时间:2018-07-06 14:19:30      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:func   []   datetime   运行时   time   now()   code   tar   for   

1.datetime显示当前时间

import datetime


def Func(n):
    t = datetime.datetime.now()
    print t
    print "start **************"
    l=[]
    for i in range(1,10):
        l.append(i)
        time.sleep(1)
    e = datetime.datetime.now()
    print e
    print (e - t).seconds
Func(11)

 

实现一个统计函数运行时间

标签:func   []   datetime   运行时   time   now()   code   tar   for   

原文地址:https://www.cnblogs.com/lanbing/p/9273154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!