If you want to display the current time as below format
11:30PM EST on Oct 3, 2019
Find the code below:
import time display = time.strftime('%H:%M%p %Z on %b %d, %Y') # print(display)
Comment here