python program to print current date and time code example
Example 1: python displaying the time
import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Example 2: print time in python
import time
t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
print(current_time)