I have a column in a pandas dataframe in seconds.
seconds
0 122400
1 43245
2 234143
3 53245
4 394911
I want to convert that into HH:MM:SS and I do not want days. Instead, I want the day to be added into hours.
seconds time
0 122400 34:00:00
1 43245 12:00:45
2 234143 65:02:23
3 53245 14:47:25
4 394911 109:41:51
For example, if it was 1 day 10:00:00, I need to output to be 34:00:00.