So i have a column "Date" that holds dates in a 5 digit format. i´m trying to create a new column with the format i want (%Y-%d-%m), but the loop show below just don´t stops.
for u in df["Date"]: df["DateNew"] = datetime.date(1900,1,28) + datetime.timedelta(days=u)
I would appreciate any suggestions.