strptime %f 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: python string to datetime python
from dateutil import parser
datetime_object = parser.parse("Jun 1 2020 1:36PM")