1. python 打印出函数执行所用时间

测量执行时间,共测量三组,每组测量2次,最后是每组测试的总时间。

>>> import timeit
>>> timeit.Timer('print("this is a test")').repeat(3,2)
this is a test
this is a test
this is a test
this is a test
this is a test
this is a test
[1.0013580322265625e-05, 4.0531158447265625e-06, 3.0994415283203125e-06]

2. 分析python程序运行时间的几种方法

你在windows下根本不用这么麻烦: 首先,比如你的程序名字是 test.py 如果你想调用某个具体函数,就自己写一个的文件,比如 import spider spider.go() 然后,用系统at命令指定几点几分或者每个星期几或者每个月的第几个星期几等执行某个程序。

在执行程序的地方写到: c:\python25\python.exe myfile.py 这样就可以了。 =================================== 如果你觉得简单的方法不好或者你要在其它系统下也可以用,那就这样: 首先,写一串代码:大致意思如下,把_换成空格 import os,time,spider while True: __time.sleep(1) __if time.ctime()[12:19]=="8:00:00" or time.ctime()[12:19]=="20:00:00" : ____spider.go() #举个例子 然后,开机就执行这个文件。

windows下可以把文件存为pyw然后开机启动这样没有黑框。其它系统你爱怎么样都可以了(mac没用过不知道)。

3. 分析python程序运行时间的几种方法

你在windows下根本不用这么麻烦: 首先,比如你的程序名字是 test.py 如果你想调用某个具体函数,就自己写一个的文件,比如 import spider spider.go() 然后,用系统at命令指定几点几分或者每个星期几或者每个月的第几个星期几等执行某个程序。

在执行程序的地方写到: c:\python25\python.exe myfile.py 这样就可以了。 =================================== 如果你觉得简单的方法不好或者你要在其它系统下也可以用,那就这样: 首先,写一串代码:大致意思如下,把_换成空格 import os,time,spider while True: __time.sleep(1) __if time.ctime()[12:19]=="8:00:00" or time.ctime()[12:19]=="20:00:00" : ____spider.go() #举个例子 然后,开机就执行这个文件。

windows下可以把文件存为pyw然后开机启动这样没有黑框。其它系统你爱怎么样都可以了(mac没用过不知道)。

4. 如何让python程序每个一段时间执行一次

python定时程序(每隔一段时间执行指定函数)

[python] view plain copy
import os
import time
def print_ts(message):
print "[%s] %s"%(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), message)
def run(interval, command):
print_ts("-"*100)
print_ts("Command %s"%command)
print_ts("Starting every %s seconds."%interval)
print_ts("-"*100)
while True:
try:
# sleep for the remaining seconds of interval
time_remaining = interval-time.time()%interval
print_ts("Sleeping until %s (%s seconds)。"%((time.ctime(time.time()+time_remaining)), time_remaining))
time.sleep(time_remaining)
print_ts("Starting command.")
# execute the command
status = os.system(command)
print_ts("-"*100)
print_ts("Command status = %s."%status)
except Exception, e:
print e
if __name__=="__main__":
interval = 5
command = r"ls"
run(interval, command)
5. python 如何把一段完整的代码分成几块去测试运行时间
可以适当的嵌入计算时间的代码,如果是以秒为单位,可以使用time模块,
类似的代码如下,
import time
start = time.time()
end = time.time()
during = end - start
'''
other is same here. also you can use datetime module. in which you can
format the time in a friendly format to human. besides that, you can
compute the hour, minute from second by own.
'''