How to deal with time values over 24 hours in python?
问题 I'm dealing with a large amount of data that has both values and times(in strings). I am converting the string time values into datetime values with the following code: time = datetime.datetime.strptime(time, " %H:%M:%S.%f") The only problem is that some of my data has the format: 24:00:00.004. So some of the data is actually over 24 hours Python is giving me this error: ValueError: time data ' 24:00:00:004' does not match format ' %H:%M:%S.%f' Any ideas on how to deal with this problem 回答1: