in excel I have a cell with the value 1:23.456 with the the format m:ss.000 (minute, seconds and milliseconds)
now I want to read the value with python xlwings and pandas:
import xlwings as xw
import pandas as pd
excelData = xw.Book(path)
data = pd.DataFrame(excelData.sheets[sheetName].used_range.value)
print(data[20][7])
but instead of 1:23.456 I get 0.000965925925925926 as the output.
How do I get the right number as the output? (1:23.456)