2005年09月09日 星期五 20:27
有一个程序,我想知道他内部每个函数多次的运行时间总和(分别测量),有什么好办法呢? timeit好像不行.
2005年09月09日 星期五 20:41
在 05-9-9,gyb tension<tensiongyb at gmail.com> 写道: > 有一个程序,我想知道他内部每个函数多次的运行时间总和(分别测量),有什么好办法呢? > timeit好像不行. > 看一下profile的使用。 -- I like python! My Donews Blog: http://www.donews.net/limodou
2005年09月10日 星期六 00:54
最简单的办法是 def a() : import time start = time.time() ..... print time.time() - start On 9/9/05, limodou <limodou at gmail.com> wrote: > 在 05-9-9,gyb tension<tensiongyb at gmail.com> 写道: > > 有一个程序,我想知道他内部每个函数多次的运行时间总和(分别测量),有什么好办法呢? > > timeit好像不行. > > > > 看一下profile的使用。 > > -- > I like python! > My Donews Blog: http://www.donews.net/limodou > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > >
2005年09月10日 星期六 01:37
这个我想过了,测量一次运行时间可以,但次数多了就不方便了。 还得定义全局变量,函数多了比较累人,每个函数都要定义一个全局变量。 在05-9-10,shhgs <shhgs.efhilt at gmail.com> 写道: > > 最简单的办法是 > def a() : > import time > start = time.time() > ..... > print time.time() - start > > > On 9/9/05, limodou <limodou at gmail.com> wrote: > > 在 05-9-9,gyb tension<tensiongyb at gmail.com> 写道: > > > 有一个程序,我想知道他内部每个函数多次的运行时间总和(分别测量),有什么好办法呢? > > > timeit好像不行. > > > > > > > 看一下profile的使用。 > > > > -- > > I like python! > > My Donews Blog: http://www.donews.net/limodou > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050910/bd38a628/attachment.html
Zeuux © 2025
京ICP备05028076号