Pandas Datetime Show Only Date

# Changing object type column to datetime
df['date_col'] = pd.to_datetime(df.date_col)

# Creating new column with just the date
df['new_date_col'] = df['date_col'].dt.date
Black Badger