Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9167097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:18:26+00:00 2026-06-17T15:18:26+00:00

So in Java, we can do How to measure time taken by a function

  • 0

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 this:

import some_time_library

starttime = some_time_library.some_module()
code_tobe_measured() 
endtime = some_time_library.some_module()

time_taken = endtime - starttime
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:18:28+00:00Added an answer on June 17, 2026 at 3:18 pm

    If you want to measure CPU time, can use time.process_time() for Python 3.3 and above:

    import time
    start = time.process_time()
    # your code here    
    print(time.process_time() - start)
    

    First call turns the timer on, and second call tells you how many seconds have elapsed.

    There is also a function time.clock(), but it is deprecated since Python 3.3 and will be removed in Python 3.8.

    There are better profiling tools like timeit and profile, however time.process_time() will measure the CPU time and this is what you’re are asking about.

    If you want to measure wall clock time instead, use time.time().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I measure the speed of code written in Java? I planning to
I wish to measure the time taken to instantiate an object in java. I
Is there any tool can measure execution time for each function call and find
In Java, how can I measure the speed of the mouse movement but disable
For a particular segment of Java code, I'd like to measure: Execution time (most
Is there anything simple Java can't do that can be done in a similar
I need to get the execution time for a function in Java. I am
Possible Duplicate: Measure execution time for a Java method I have an application by
I am writing a small java program that can measure the speed of my
I would like to measure elapsed time in a Java. However differences in System.currentTimeMillis()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.