getting time from python code example
Example 1: how to make python tell the time
import time
t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)
Example 2: print time python
from datetime import datetime
now = datetime.now().time() # time object
print("now =", now)
print("type(now) =", type(now))