Answers for "convert seconds to minutes hours and seconds in python"

1

seconds to time python

seconds_input = 43290
conversion = datetime.timedelta(seconds=seconds_input)
print(str(converted_time))

#output 12:01:30
Posted by: Guest on May-20-2021
1

convert seconds to hours python

method = a
import datetime
str(datetime.timedelta(seconds=666))
'0:11:06'

method = b
def convert(seconds):
    seconds = seconds % (24 * 3600)
    hour = seconds // 3600
    seconds %= 3600
    minutes = seconds // 60
    seconds %= 60      
    return "%d:%02d:%02d" % (hour, minutes, seconds)
Posted by: Guest on May-09-2021

Code answers related to "convert seconds to minutes hours and seconds in python"

Python Answers by Framework

Browse Popular Code Answers by Language