python get system time date 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: python print datetime
import datetime
print("Now:", datetime.datetime.now())