import re

tempprices = "0.0, 82.00.0,...., 82.0\n"
cells = tempprices.split(',')
temp =[]
for t in cells:
	mObj = re.search(r'-?\d+\.\d{1,2}', t)
	if mObj:
		temp.append(float(mObj.group()))
print(temp)
