About 415,000 results
Open links in new tab
  1. How do I measure elapsed time in Python? - Stack Overflow

    The python cProfile and pstats modules offer great support for measuring time elapsed in certain functions without having to add any code around the existing functions.

  2. How do I get the current time in Python? - Stack Overflow

    559 How do I get the current time in Python? The time module The time module provides functions that tell us the time in "seconds since the epoch" as well as other utilities.

  3. python - How to properly use time.time () - Stack Overflow

    May 10, 2020 · 3 I am trying to time a running function. But I need to know how many hours/minutes/seconds does it takes. I am using time.time (), but I don't understand the output. …

  4. time - how do I make a Timer in Python - Stack Overflow

    Nov 21, 2021 · How do you create a timer in python? My project is a speed typing test and the timer is there to time the length it takes the user to type. The first task the user types is the …

  5. time - High-precision clock in Python - Stack Overflow

    The standard time.time() function provides sub-second precision, though that precision varies by platform. For Linux and Mac precision is +- 1 microsecond or 0.001 milliseconds. Python on …

  6. How do I get my program to sleep for 50 milliseconds?

    Dec 18, 2008 · Might be interesting to know though that 'the function [time.sleep(secs)] sleeps at least secs ' since Python 3.5 according to the documentation.

  7. How do I get the current time in milliseconds in Python?

    Jun 17, 2019 · In versions of Python after 3.7, the best answer is to use time.perf_counter_ns(). As stated in the docs: time.perf_counter() -> float Return the value (in fractional seconds) of a …

  8. How to measure time taken between lines of code in python?

    So in Java, we can do How to measure time taken by a function to execute But how is it done in python? To measure the time start and end time between lines of code? Something that does …

  9. python - How do I make a time delay? - Stack Overflow

    The Tkinter library in the Python standard library is an interactive tool which you can import. Basically, you can create buttons and boxes and popups and stuff that appear as windows …

  10. python - Can't install time module - Stack Overflow

    Mar 1, 2017 · Did you happen to name a file time.py (or a folder containing Python modules time)? If it's in your working directory, it will shadow the built-in time module.