On Thu, Nov 16, 2017 at 05:35:59PM -0500, ROGER GRAYDON CHRISTMAN wrote:

> Well, pi already does have a value:
> 
>>>> import math
>>>> math.pi
> 
> 3.141592653589793
> 
> but it's not a constant in the sense you are looking for:

And, it's not really a constant at all, it's only got a
constant definition :-)

> The only PEP I saw that makes any mention of constants is the PEP 8 Style 
> Guide,
> which recommends all constants be named with all caps, such as "math.PI".
> (Why the math module doesn't do that beats me, unless it is there for
> hyster^H^H^H^H^Historical reasons.)

So,

        import math
        math.PI = math.pi

seems helpful :)

Karsten
-- 
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to