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

3.FaulyCalculator.py

11.Snake Water Gun Game.py

15.PyStopWatch.py