Given the string in this format \"HH:MM\", for example \"03:55\", that represents 3 hours and 55 minutes.
string
\"HH:MM\"
\"03:55\"
I want to c
>>> datetime.time(*map(int, '03:55'.split(':'))) datetime.time(3, 55)