For example, I'm trying to convert 2008-09-26T01:51:42.000Z to 09/26/2008. What's the simplest way of accomplishing this?
|
|
The easiest way is to use dateutil.parser.parse() to parse the date string into a timezone aware datetime object, then use strftime() to get the format you want.
|
||
|
|
|
|
|
||
|
|
|
|
See the documentation of the Python |
||||||||||
|
