The Python function time.currenttime returns a string representing the day/time. code example
Example 1: python time library
#also see datetime
import time
now = time.time()
print(now)
Example 2: time module in python
import time
seconds = time.time()
print("Seconds since epoch =", seconds)