I am converting '12:37:00.60735106'
to a time object to get the difference.
line[1] = '12:37:00.60735106'
t1 = time.strptime(line[1], "%H:%M:%S.%f")
Error ValueError: unconverted data remains: 06
If I remove the last two digits it works. What am I missing?
When I drop off the last two digits.
line[1] = '12:37:00.607351'
t1 = time.strptime(line[1], "%H:%M:%S.%f")
prints 12:38:00.60734606
Which is longer than my original.