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?
|
feedback
|
|
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.
| |||
|
feedback
|
See the documentation of the Python | |||||||||||
feedback
|
|
| |||
|
feedback
|
U can make a function like this which take date object andd returns you date in desired dateFormat.... | |||
|
feedback
|