I have a DataFrame :
Age Gender Address     Date
15    M    172 ST   2022-02-07 00:00:00 
I Want to remove hh:mm:ss I tried:
import datetime as dt
df["Date"]=df["Date"].dt.Date .
But I am receiving no change in date column format.
All I want is that the date column has only (YYYY-MM-DD).
 
    