I have an excel binary file that looks like this:
ird
1/1/2023
9/9/2023
-
When I read this data with pandas i get this:
from pathlib import WindowsPath
p = WindowsPath(r'C:\Users\data\book.xlsb')
df = pd.read_excel(p)
print(df)
print(df.dtypes)
ird
0 44927
1 45178
2 -
ird object
dtype: object
Why does the dates get converted to these strange numbers ? I cannot find the reason for this.