python计算函数执行时长的方法是什么

其他教程   发布日期:2025年02月11日   浏览次数:186

本篇内容主要讲解“python计算函数执行时长的方法是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“python计算函数执行时长的方法是什么”吧!

python开发,有时需要做性能分析及性能优化,这时就需要记录一些耗时函数执行时间问题,然后针对函数逻辑进行优化。

在python3中一般都有哪些方法呢。

1、使用time.time()

这种方法较简单,但如果想更精确的计算函数的执行时间,会产生精度缺失,没办法统计时间极短的函数耗时。

  1. import time
  2. def func():
  3. time.sleep(1)
  4. t = time.time()
  5. func()
  6. print(f'耗时:{time.time() - t:.4f}s')
  7. 耗时:1.0050s

2、使用time.perf_counter()

perf_counter是在python3.3新添加的,返回性能计数器的值,返回值是浮点型,统计结果包括睡眠的时间,单个函数的返回值无意义,只有多次运行取差值的结果才是有效的函数执行时间。

  1. import time
  2. def func():
  3. print('hello world')
  4. t = time.perf_counter()
  5. func()
  6. print(f'耗时:{time.perf_counter() - t:.8f}s')
  7. hello world
  8. 耗时:0.00051790s

3、使用timeit.timeit ()

  1. timeit()函数有5个参数:
  2. stmt 参数是需要执行的语句,默认为 pass
  3. setup 参数是用来执行初始化代码或构建环境的语句,默认为 pass
  4. timer 是计时器,默认是 perf_counter()
  5. number 是执行次数,默认为一百万
  6. globals 用来指定要运行代码的命名空间,默认为 None
  7. import timeit
  8. def func():
  9. print('hello world')
  10. print(f'耗时: {timeit.timeit(stmt=func, number=1)}')
  11. hello world
  12. 耗时: 0.0007705999999999824

4、使用装饰器统计

在实际项目代码中,可以通过装饰器方便的统计函数运行耗时。使用装饰器来统计函数执行耗时的好处是对函数的入侵性小,易于编写和修改。

装饰器装饰函数的方案只适用于统计函数的运行耗时,如果有代码块耗时统计的需求就不能用了,这种情况下可以使用 with 语句自动管理上下文。

(1)同步函数的统计

  1. import time
  2. def coast_time(func):
  3. def fun(*args, **kwargs):
  4. t = time.perf_counter()
  5. result = func(*args, **kwargs)
  6. print(f'函数:{func.__name__} 耗时:{time.perf_counter() - t:.8f} s')
  7. return result
  8. return fun
  9. @coast_time
  10. def test():
  11. print('hello world')
  12. if __name__ == '__main__':
  13. test()

(2)异步函数的统计

  1. import asyncio
  2. import time
  3. from asyncio.coroutines import iscoroutinefunction
  4. def coast_time(func):
  5. def fun(*args, **kwargs):
  6. t = time.perf_counter()
  7. result = func(*args, **kwargs)
  8. print(f'函数:{func.__name__} 耗时:{time.perf_counter() - t:.8f} s')
  9. return result
  10. async def func_async(*args, **kwargs):
  11. t = time.perf_counter()
  12. result = await func(*args, **kwargs)
  13. print(f'函数:{func.__name__} 耗时:{time.perf_counter() - t:.8f} s')
  14. return result
  15. if iscoroutinefunction(func):
  16. return func_async
  17. else:
  18. return fun
  19. @coast_time
  20. def test():
  21. print('hello test')
  22. time.sleep(1)
  23. @coast_time
  24. async def test_async():
  25. print('hello test_async')
  26. await asyncio.sleep(1)
  27. if __name__ == '__main__':
  28. test()
  29. asyncio.get_event_loop().run_until_complete(test_async())
  30. hello test
  31. 函数:test 耗时:1.00230700 s
  32. hello test_async
  33. 函数:test_async 耗时:1.00572550 s

5、with语句统计

通过实现 enter 和 exit 函数可以在进入和退出上下文时进行一些自定义动作,例如连接或断开数据库、打开或 关闭文件、记录开始或结束时间等,例如:我们用来统计函数块的执行时间。

with语句不仅可以统计代码块的执行时间,也可以统计函数的执行时间,还可以统计多个函数的执行时间之和,相比装饰器来说对代码的入侵性比较大,不易于修改,好处是使用起来比较灵活,不用写过多的重复代码。

  1. import asyncio
  2. import time
  3. class CoastTime(object):
  4. def __init__(self):
  5. self.t = 0
  6. def __enter__(self):
  7. self.t = time.perf_counter()
  8. return self
  9. def __exit__(self, exc_type, exc_val, exc_tb):
  10. print(f'耗时:{time.perf_counter() - self.t:.8f} s')
  11. def test():
  12. print('hello test')
  13. with CoastTime():
  14. time.sleep(1)
  15. async def test_async():
  16. print('hello test_async')
  17. with CoastTime():
  18. await asyncio.sleep(1)
  19. if __name__ == '__main__':
  20. test()
  21. asyncio.get_event_loop().run_until_complete(test_async())
  22. hello test
  23. 耗时:1.00723310 s
  24. hello test_async
  25. 耗时:1.00366820 s

以上就是python计算函数执行时长的方法是什么的详细内容,更多关于python计算函数执行时长的方法是什么的资料请关注九品源码其它相关文章!