12 lines
361 B
Python
12 lines
361 B
Python
def approx_pi(i): # NE PAS EFFACER CETTE LIGNE
|
|
"""
|
|
@pre: i est un entier tel que i >= 0
|
|
@post: retourne une estimation de pi en sommant
|
|
les i + 1 premiers termes de la série de Gregory-Leibniz
|
|
"""
|
|
### VOTRE REPONSE
|
|
pi = 0
|
|
for j in range(i+1):
|
|
pi+=4*((-1)**j/(2*j+1))
|
|
print(pi)
|
|
print(pi) |