Exercise 1: Playing with Numbers
Ready for a time calculation exercise?
We'll cover the following
Problem statement
How many hours and minutes are there in the month of December?
Tip: Start writing your code from line 3 below without worrying about the enclosing lines of code.
Try it yourself
def playing_with_numbershours_in_december = -99, minutes_in_december = -99# Start your code herereturn hours_in_december, minutes_in_decemberend