Hi
sum = 0
for item in readData:
try:
sum += int(item)
except ValueError:
print "Oops! That was no valid number. Instead it was:", item
So you mean to say this would ignore the bad data and continue processing ?
regards
--
http://mail.python.org/mailman/listinfo/python-list
