I have a list of string time stamps:
['08:29', '08:03', '00:00', '08:09', '08:13', '07:54', '07:30']
I want to convert each timestamp to decimal form, rounded to the nearest 0.5, and return the string. Output should be:
['8,5', '8,0', '0,0', '8,0', '8,0', '8,0', '7,5']
I have some ideas on how to do this but they are all messy on my head and I'm sure there's a function that I don't know that will help, numbers should be rounded between 0 and 5 decimals, so 7:46 would be 8.0, 7:35 would be 7,5 and so on...