Write a program to convert the time input in minutes into hours and remaining minutes
Answers
Answered by
2
Answer:
plz follow me plz
Explanation:
time = float(input("Input time in seconds: "))
day = time // (24 * 3600)
time = time % (24 * 3600)
hour = time // 3600
time %= 3600
minutes = time // 60
time %= 60
seconds = time
print("d:h:m:s-> %d:%d:%d:%d" % (day, hour, minutes, seconds))
Answered by
0
Explanation:
join me for fun
aac-uhin-wfv
Similar questions
Physics,
2 months ago
Social Sciences,
2 months ago
Math,
2 months ago
Science,
4 months ago
Math,
4 months ago
Social Sciences,
10 months ago
Math,
10 months ago
Geography,
10 months ago