string to datetime python2 code example
Example 1: python string to datetime
from datetime import datetime
datetime_object = datetime.strptime('Jun 1 2005 1:33PM', '%b %d %Y %I:%M%p')
Example 2: convert str to datetime
import datetime
# str value "Apr 2, 2019" convert into any format.
datetime.datetime.strptime('Apr 2, 2019', '%b %d, %Y').strftime('%a, %d %b %Y')
Example 3: python string to datetime python
from dateutil import parser
datetime_object = parser.parse("Jun 1 2020 1:36PM")