from datetime to date pandas code example
Example 1: convert date time to date pandas
df['date_column'] = pd.to_datetime(df['datetime_column']).dt.date
Example 2: 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