I have a column df['Date]
which is a datetime64[ns] type and after doing the
sheets= sorted(df['Date'].unique(), reverse =True)
I get a numpy.datetime64('2022-04-20T00:00:00.000000000')
format, but I want it to be of this format datetime.date(2022, 2, 16)
.