Python Exercise Example95
# Python2.x Python Exercise Instance 95
[ Python 100 Examples](#)
**Title:** Convert string date to readable date format.
**Program Analysis:** None.
Program source code:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from dateutil import parser
dt = parser.parse("Aug 28 2015 12:00AM")
print dt
The output of the above instance is:
2015-08-28 00:00:00
[ Python 100 Examples](#)
YouTip