Created
September 22, 2010 07:17
-
-
Save jgorset/591286 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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