Computer Science, asked by bhaweshswami, 3 months ago

Write a program to convert the time input in minutes into hours and remaining minutes

Answers

Answered by princeuplucky123449
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 Anonymous
0

Explanation:

join me for fun

aac-uhin-wfv

Similar questions