How do I type a floating point infinity literal in python?
I have heard
inf = float('inf')
is non portable. Thus, I have had the following recommended:
inf = 1e400
Is either of these standard, or portable? What is best practice?
|
How do I type a floating point infinity literal in python? I have heard
is non portable. Thus, I have had the following recommended:
Is either of these standard, or portable? What is best practice? |
||||
|
|
|
In python 2.6 it is portable if the CPU supports it
|
|||||||
|
|
(And the recommendation seems to be in the range 1e30000, not just 1e400.) |
|||
|
|
|
Perhaps you could do somthing like this
|
|||||
|