Hi I want to evaluate the number e to arbitrary precision using python3. I am trying the numpy's built-in function in the following way
import numpy as np
print(np.exp(1))
which returns 2.71828182846. How can I increase the number of digits?
Hi I want to evaluate the number e to arbitrary precision using python3. I am trying the numpy's built-in function in the following way
import numpy as np
print(np.exp(1))
which returns 2.71828182846. How can I increase the number of digits?