How can I display the current time as:
12:18PM EST on Oct 18, 2010
in Python. Thanks.
All you need is in the documentation.
import time time.strftime('%X %x %Z') '16:08:12 05/08/03 AEST'