System timer

The time module in python provides various methods and functions related to time.

Elapsed Seconds

The time.time() method returns the current CPU time in seconds (the time since the start of the epoch which is system dependant, but its some date in the past).

import time

    system_seconds = round(time.time())    #round() because a floating point number is returned wheras we want an integer

Elapsed milliseconds

Because the time.time() method returns a floating point second value, all we need to do is multiply it by 1000 and round it off and we have elapsed milliseconds:

    system_milliseconds = round(time.time() * 1000)

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *