I'm trying to remove the commas from this data set so they can be converted to int
and be summed up all but I can't seem to find any way to do it without introducing spaces to the number values.
parse = g.readlines()[8:]
for x in parse:
val0 = x.strip(',')
val = val0.split(" ")
i15.append(val[1])
this is my current code trying to remove the commas.