Hello,

I was trying to show that this limit was 'e'
But when I try large numbers I get errors

def lim(p):
    return math.pow(1 + 1.0 / p , p)

>>> lim(500000000)
2.718281748862504
>>> lim(900000000)
2.7182820518605446  !!!!


What am i doing wrong ?

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

Reply via email to