I want to use the following code snippet to turn a generator of upcoming days into readable words, that I will store in a list, using .strftime(" %A, %B %d, %Y").
base = datetime.today()
date_list = [base - timedelta(days=x) for x in range(0, 7)]
datescroll_list = ()
However, what gets returned is in an unreadable format. The methods I know of turning that format into a readable format is not working.
You code works fine if you add parens then call strftime:
Output: