I have a column in a DataFrame named fatalities in which few of the values are like below:
data[''fatalities']= [1, 4,  , 10, 1+8, 5, 2+9,  , 16, 4+5]
I want the values of like '1+8', '2+9', etc to be converted to its aggregated value i.e, 
data[''fatalities']= [1, 4,  , 10, 9, 5, 11,  , 16, 9]
I not sure how to write a code to perform above aggregation for one of the column in pandas DataFrame in Python. But when I tried with the below code its throwing an error.
def addition(col):
  col= col.split('+')
  col= int(col[0]) + int(col[1])
  return col
data['fatalities']= [addition(row) for row in data['fatalities']]
Error:
IndexError: list index out of range
 
     
    