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.
from datetime import date, timedelta
sdate = date(2019,3,22) # start date
edate = date(2019,4,9) # end date
date_modified=sdate
list=[sdate]
while date_modified