This code:
dateCol = []
for row in ws3.iter_rows(min_col=1, max_col=1, min_row=7, max_row = None):
for cell in row:
dateCol.append((ws3.cell(row=cell.row, column=1).value))
dateCol
Produces this list:
[datetime.datetime(2019, 10, 7, 0, 0),
datetime.datetime(2019, 10, 3, 0, 0),
datetime.datetime(2019, 10, 3, 0, 0),
datetime.datetime(2019, 10, 14, 0, 0),
datetime.datetime(2019, 10, 15, 0, 0),
...]
In Excel the dates look like:
How do I convert these dates to mm/dd/yyyy? I have struggled with this as shown in (which I may delete soon as it less pointed):