I want to generate a list of dates between two dates and store them in a list in string format. This list is useful to compare with other dates I have.
My code is g
You'd need to turn it into a list with strings explicitly:
print([str(d) for d in dates_bwn_twodates(sdate,edate)])