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

Press + to interact
def playing_with_numbers
hours_in_december = -99, minutes_in_december = -99
# Start your code here
return hours_in_december, minutes_in_december
end