python list of datetimes as type string code example
Example: python list of datetimes as type string
mondays =[datetime.date(2019, 2, 14), datetime.date(2019, 2, 21)]
[date_obj.strftime('%Y%m%d') for date_obj in mondays]
# Output:
['20190214', '20190221']