--Originally published at Site Title
Estimating e
What To Do
In this assignment you will estimate the mathematical constant e. You should create a function called calculuate_e which receives one parameter called precision that should specify the number of decimal points of accuracy.
You will want to use the infinite series to calculate the value, stopping when the accuracy is reached (previous and current calculation are the same at the specified accuracy).
Code/Código:
Python:
Gracias a mi compañero Marco por ayudarme con este problema. Pueden encontar su blog en el siguiente enlace:
https://eosthel.wordpress.com/2017/05/02/python-conventions/