YouTip LogoYouTip

Python Exercise Example95

# Python2.x Python Exercise Instance 95 [![Image 3: Python 100 Examples](#) 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 [![Image 4: Python 100 Examples](#) Python 100 Examples](#)
← Python Exercise Example96Python Exercise Example94 β†’