5.MinuteToHourConvertor.py

 n_time = int(input("Enter the time in Minutes"))

Hour = n_time//60
Min = n_time%60
Sec = n_time*3600
# std_time = str(HourMin:Sec)
print(Hour,":",Min,":",Sec)

Comments

Popular posts from this blog

17.Tic-Tac-Toe.py

12.Gym Management System.py

13.Library Management SystemOOPs.py