I want to find half time between two times in python. Let's say I've two times
start_time = '08:30:00'
end_time = '16:30:00'
If I want to display first half, it should print as'08:30:00' and '12:30:00'
If I want to display second half, it should print as '12:30:00' and '16:30:00'
Any suggestions would be helpful.