id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

gaurav1780@gmail.com 02_conditions > get_updated_time
prev  |  next  |  chance

Define a function that when passed four integers, hour1, minute1, hours_to_add and minutes_to_add, returns the time when you add the said duration to the time represented by hour1, minute1.


get_updated_time(10, 20, 0, 45) → '11:05'
get_updated_time(10, 20, 23, 30) → '09:50'
get_updated_time(10, 20, 10, 0) → '20:20'

...Save, Compile, Run (ctrl-enter)

def get_updated_time(hour1, minute1, hours_to_add, minutes_to_add):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 4 Post-solution available

Copyright Nick Parlante 2017 - privacy