Created
May 4, 2017 14:59
-
-
Save skuro/0eb0d3349fbb91f7d0e9877f5d978f9f 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
>>> import datetime | |
>>> "oggi e' %s" % datetime.date.today() | |
"oggi e' 2017-05-04" | |
>>> "oggi e' %r" % datetime.date.today() | |
"oggi e' datetime.date(2017, 5, 4)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment