python format string to date code example

Example 1: convert into date python

from datetime import datetime

datetime_str = '09/19/18 13:55:26'

datetime_object = datetime.strptime(datetime_str, '%m/%d/%y %H:%M:%S')

print(type(datetime_object))
print(datetime_object)  # printed in default format

Example 2: python string to datetime

from datetime import datetime

datetime_object = datetime.strptime('Jun 1 2005  1:33PM', '%b %d %Y %I:%M%p')

Example 3: python string to datetime python

from dateutil import parser
datetime_object = parser.parse("Jun 1 2020  1:36PM")

Tags:

Java Example