Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to quickly calculate the running time of functions by python

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces python how to quickly calculate the running time of the function, the article is very detailed, has a certain reference value, interested friends must read it!

How to quickly calculate the running time of a function

Calculate the run time of a function, and you might do this

Import time start = time.time () # run the function end = time.time () print (end-start)

Look how many lines of code you have written to calculate the running time of the function.

Is there a way to calculate the run time more easily?

Yes.

There is a built-in module called timeit

Use it with only one line of code

Import time import timeit def run_sleep (second): print (second) time.sleep (second) # use only this line print (timeit.timeit (lambda: run_sleep (2), number=5))

The running result is as follows

10.020059824 and above are all the contents of the article "how to quickly calculate the running time of a function by python". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report