Question: Your task is to prepare a simple code able to evaluate the end time of a period of time given as a number of minutes
Your task is to prepare a simple code able to evaluate the end time of a period of time given as a number of minutes (it could be arbitrarily large). The start time is given as a pair of hours (0..23) and minutes(0..59). the result has to be printed to the console.
For example, if an event starts at 12:17 and lasts 59 minutes it will end at 13:16.
Test your code carefully. Hint using the % operator may be the key to success.
hour = int(input("Starting time (hours): "))
mins = int(input("Starting time (minutes): "))
dura = int(input("Event duration (minutes): "))
# Write your code here.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
