CBSE BOARD XII, asked by cherie23desouza, 5 hours ago

write a python program to convert seconds to hours and minutes

please help ​

Answers

Answered by Anonymous
1

#Seconds to Hour

secs= float( raw_input ( "Enter unit in seconds:"))

print " One hour is equal to:", secs

Hour= Secs*3600

print "seconds to an hour is:", Hour.

# Minutes to Hour

Min=float( raw_input (" Enter unit in a minute:"))

print "One minute is equal to:", min

Hour= Min*60

print " Minute to an hour is:", Hour

Similar questions