I have a df column which contains dict of hours timing Example:
df['hours'][:1]
out:
{'Monday': '0:0-0:0',
'Tuesday': '8:0-18:30',
'Wednesday': '8:0-18:30',
'Thursday': '8:0-18:30',
'Friday': '8:0-18:30',
'Saturday': '8:0-14:0'}
by writing python code how can i calculate total hours in a week.