I imported excel data, and the date got changed automatically to 5 digits like '44309'. I am using this code to try to change it on this test date since I know its supposed to equal '4/23/2021'.
print(datetime.utcfromtimestamp(0)+timedelta(44309)).strftime(%Y-%m-%d))
Its giving me '2091-04-25'.
Not sure what im doing wrong.