Dan Bishop wrote:
> 
> 
> 
> Python just uses the atof() function from the underlying C library.
> Some of them handle NaN's, and some of them don't.
> 
> 

As a work around, how would I write this in list comprehension form:

         newlist=[]
         for i in range(len(v[1])):
            try:
               newlist.append(float(v[1][i]))
            except:
               newlist.append(-999.99) # or just nan possibly?




-- 
View this message in context: 
http://www.nabble.com/numpy%3A-handling-float%28%27NaN%27%29-different-in-XP-vs.-Linux-tp17835502p17870333.html
Sent from the Python - python-list mailing list archive at Nabble.com.

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to