py time code example

Example 1: time it python

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)

Example 2: python time library

#also see datetime
import time
now = time.time()
print(now)

Example 3: time module in python

import time
seconds = time.time()
print("Seconds since epoch =", seconds)

Example 4: time in python

import time
thistime = time.time()
# Here's an idea!
def CountTime():
  while(True):
    time.sleep(1)
    print(thistime)
CountTime()

Example 5: time python

#import time module:
import time
#module has various attributes: 
dir(time)
[..., 'localtime', 'mktime', 'sleep', 'sleep_ms', 'sleep_us', 'ticks_add', 'ticks_cpu', 'ticks_diff', 'ticks_ms', 'ticks_us', 'time']

#default expression is in seconds with zero being start of runtime
secFromStart = time.time()