Why does the following return incorrect seconds and fractional seconds?:
Input:
import pandas as pd
pd.to_datetime(float(171638.6), format='%H%M%S%f')
Output:
Timestamp('1900-01-01 17:16:03.800000')
I expected it to return:
Timestamp('1900-01-01 17:16:38.600000')
I am not sure if this is related: https://github.com/pandas-dev/pandas/pull/13847