Skip to content

Instantly share code, notes, and snippets.

@jgorset
Created September 22, 2010 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgorset/591286 to your computer and use it in GitHub Desktop.
Save jgorset/591286 to your computer and use it in GitHub Desktop.
Django console:
>>> now = datetime.now()
>>> now.strftime("%d %b %Y %I:%M:%S %p")
'22 Sep 2010 02:15:55 AM'
>>> print now.tzinfo
None
Python console:
>>> now = datetime.now()
>>> now.strftime("%d %b %Y %I:%M:%S %p")
'22 Sep 2010 09:16:52 AM'
>>> print now.tzinfo
None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment