23.3k views
5 votes
Write a Python script that prompts the user to enter a number of seconds. Then, calculate the number of hours and minutes and print the result

User Explv
by
8.3k points

1 Answer

6 votes

secs= int(input("Enter a number of seconds: "))

if secs >= 3600:

hours = (secs/60)/60

print("There are {} hour(s) and {} min(s)".format(hours,((hours*60*60)-secs)/60))

else:

mins = secs /60

print("There are {} min(s)".format(mins))

I hope this helps!

User Satiago
by
8.4k points