Answers for "change a decimal to time in datetime python"

1

change a decimal to time in datetime python

time = 72.345

hours = int(time)
minutes = (time*60) % 60
seconds = (time*3600) % 60

print("%d:%02d.%02d" % (hours, minutes, seconds))
>> 72:20:42
Posted by: Guest on April-12-2020
0

change a decimal to time in datetime python

str(int(math.floor(time))) + ':' + str(int((time%(math.floor(time)))*60)) + ':' + str(int(((time%(math.floor(time)))*60) % math.floor(((time%(math.floor(time)))*60))*60))
Posted by: Guest on April-12-2020

Code answers related to "change a decimal to time in datetime python"

Python Answers by Framework

Browse Popular Code Answers by Language