From a csv file I am reading a time series in this format 23:03:00 using pandas. The python code reads it as a string & can't convert it to integer or float to subtract it from another time step.
for example:
df = pd.read_csv('test.csv', sep=";")
x=df.iloc[1,2]
y=df.iloc[1,2]
dif=y-x