from decimal import Decimal
def fact(n):
if n == 0:
return 1
else:
return n*fact(n-1)
def euler():
i=0
total=0
n=0
while i!=170:
k=fact(n)
total=Decimal(total+10**100/k)
n+=1
i=i+1
return total /10**100
ans=Decimal(euler())
print ans
To read more on Euler's number....
def fact(n):
if n == 0:
return 1
else:
return n*fact(n-1)
def euler():
i=0
total=0
n=0
while i!=170:
k=fact(n)
total=Decimal(total+10**100/k)
n+=1
i=i+1
return total /10**100
ans=Decimal(euler())
print ans
To read more on Euler's number....
No comments:
Post a Comment