convert string to datetime python pandas code example

Example 1: convert column in pandas to datetime

df['col'] = pd.to_datetime(df['col'])

Example 2: pd.to_datetime python

import pandas as pd
date='2020/11/26 12:00:00'
date_time=pd.to_datetime(date, format='%Y/%m/%d %H:%M:%S')

Example 3: from string to time python dataframe

dfc['Time_of_Sail'] = pd.to_datetime(dfc['Time_of_Sail'],format= '%H:%M:%S' ).dt.time

Example 4: python string to datetime

from datetime import datetime

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

Example 5: pandas change dtype to timestamp

pd.to_datetime(df.column)

Example 6: python string to datetime python

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