I have a list of dates that are datetime64 objects. I want to compare these dates to a larger list of dates that are in string format:
large_list = ['2019-12-30', '2019-12-31', '2020-01-01', '2020-01-02'] #etc...
smaller_list = [2019-12-30 00:00:00, 2019-12-31 00:00:00, 2020-01-01 00:00:00] #etc..
is there any way I can convert the smaller list into a list of strings similar to the larger list so that I can compare the respective dates?