计算运行Python的代码的时间

时间:2014-04-09 13:14:21

标签: python time

我怎么能用微秒知道Python中代码的执行时间?我已经尝试过time.time和timeit.timeit,但我没有一个好的输出

6 个答案:

答案 0 :(得分:2)

最简单的方法就是这样,但是,这需要脚本运行至少十分之一秒:

import time
start_time = time.time()
# Your code here
print time.time() - start_time, "seconds"

profilers可用也有帮助。

如果我有一个看起来像这样的小脚本

print "Hello, World!"

想要描述一下

>python -m cProfile test.py
Hello, world!
         2 function calls in 0.001 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.001    0.001    0.001    0.001 test.py:1(<module>)
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Prof
iler' objects}

这表明运行耗时0.001秒,并提供有关执行代码时发生的调用的其他信息。

答案 1 :(得分:1)

试试这个,

import time
def main():
    print [i for i in range(0,100)]

start_time = time.clock()
main()
print time.clock() - start_time, "seconds"

输出:

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]
0.00255163020819 seconds

<强>更新

不要忘记import time

将此行start_time = time.clock()放在代码前面并放置

代码末尾的

print time.clock() - start_time, "seconds"

<强>更新

# Top Of script file.
def main():
        print [i for i in range(0,100)]

start_time = time.clock()
#YOUR CODE HERE - 1

main()

#YOUR CODE HERE - N
print time.clock() - start_time, "seconds"

答案 2 :(得分:1)

分析的好方法是使用cProfile库:

python -m cProfile [your_script].py

它将输出代码的每个过程的执行时间,周期数等。

答案 3 :(得分:1)

<强>更新
我强烈建议您只使用库cProfile,然后使用snakeviz

对其进行可视化

然后,您可以获得一个交互式显示,让您更好地了解代码中发生的事情。

然后,您可以选择要查看的代码的特定部分,并且有一个可排序的表格,列出了所有功能及其时间。

忘掉我原来的答案和其他人的答案。只需使用snakeviz(我不是snakeviz项目的一部分)。

snakevis time display

以下原始答案

有一个非常好的库叫jackedCodeTimerPy

它提供了非常好的报告,如

label            min          max         mean        total    run count
-------  -----------  -----------  -----------  -----------  -----------
imports  0.00283813   0.00283813   0.00283813   0.00283813             1
loop     5.96046e-06  1.50204e-05  6.71864e-06  0.000335932           50

我喜欢它如何为您提供有关它的统计信息以及计时器运行的次数。

使用简单。如果我想测量for循环中的时间代码,我只需执行以下操作:

from jackedCodeTimerPY import JackedTiming
JTimer = JackedTiming()

for i in range(50):
  JTimer.start('loop')  # 'loop' is the name of the timer
  doSomethingHere = 'This is really useful!'
  JTimer.stop('loop')
print(JTimer.report())  # prints the timing report

您也可以同时运行多个计时器。

JTimer.start('first timer')
JTimer.start('second timer')
do_something = 'amazing'
JTimer.stop('first timer')

do_something = 'else'
JTimer.stop('second timer')

print(JTimer.report())  # prints the timing report

回购中有更多使用示例。希望这会有所帮助。

https://github.com/BebeSparkelSparkel/jackedCodeTimerPY

答案 4 :(得分:0)

from time import time
chrono = []
chrono.append(time())
# your code 1 here
chrono.append(time())
print "duration 1 is : ", str((chrono[1] - chrono.pop(0))*1e6), " µs"
# your code 2 here
chrono.append(time())
print "duration 2 is : ", str((chrono[1] - chrono.pop(0))*1e6), " µs"

修改: 实际上我在一个函数中使用它:变量chrono在我想要测量的第一个代码之前声明(chrono = [])和初始化(chrono.append(time()))。然后我拨打定义的print_time("a useful message")

def print_time(message):
    chrono.append(time())
    timestamp = chrono[1] - chrono.pop(0)
    print message + ":\n {0}s".format(timestamp)

输出是:

a useful message:
0.123456789s

chrono.pop(0),插入的最后一个值成为列表中的第一个,下次调用print_time时,无需管理列表中的项目:其长度始终为2,顺序正确。< / p>

答案 5 :(得分:0)

我个人使用以下类定义的专用对象:

import time
class Chronometer():
    def __init__(self):
        self.__task_begin_timestamp = {}

    def start(self,task_name):
        """
        Start a new task chronometer

        Parameters
        ----------
        task_name : str
            task id

        Raises
        ------
        ValueError
            if a running task already exists with that name
        """
        if task_name in self.__task_begin_timestamp:
            raise ValueError("A running task exists with the name {0}!".format(task_name))
        self.__task_begin_timestamp[task_name] = time.time()

    def stop(self,task_name):
        """
        Stop and return the duration of the task

        Parameters
        ----------
        task_name : str
            task id

        Returns
        -------
        float
            duration of the task in seconds

        Raises
        ------
        ValueError
            if no task exist with the id `task_name`
        """
        if not task_name in self.__task_begin_timestamp:
             raise ValueError("The {0} task does not exist!".format(task_name))
        duration = time.time() - self.__task_begin_timestamp[task_name]
        del self.__task_begin_timestamp[task_name]
        return duration

chrono = Chronometer()
chrono.start("test")
chrono.start("test2")
time.sleep(3)
print(chrono.stop("test"))
# 3.005409002304077
time.sleep(3)
# 6.00879693031311
print(chrono.stop("test2"))