have a df with values :
name      age 
 
mark    2002-12-19    
tom     2003-11-30
how to reorder the date format with dd mm yyyy
name      age 
 
mark    19-12-2002    
tom     30-11-2003
tried this How to change the datetime format in pandas
but it is storing as string. i need in date format
 
    