Given two time points
t_1 = (hour_1, minute_1)
t_2 = (hour_2, minute_2)
How can I get the absolute time difference in minutes in Python 2.7, where
I assume that t_2
is later than t_1
, so if:
t_2 = (0, 3) and t_1 = (23, 59)
the difference would be 4 Minutes.