Saturday 26 October 2019

Python time vs datetime vs mxDateTime

WHy would I choose to use Python's time vs datetime (and also mxDateTime) when either way you can get the same result? For example,



time.localtime()[7]
datetime.date.today().timetuple()[7]


yields the same, mxDateTime can also produce same result.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...