df['col'] = pd.to_datetime(df['col'])
# convert the 'Date' column to datetime format
df['Date']= pd.to_datetime(df['Date'])
# Check the format of 'Date' column
df.info()
# importing pandas package
import pandas as pd
#date to datetime
df['Dates'] = pd.to_datetime(df['Dates'], format='%Y%m%d')
df['time'] = df['time'].apply(lambda x: x.value)
pd.to_datetime(old_df['oldDate'], format='%b %d, %Y')