linfo2335-programming-parad.../project-3/regex/code/code1288.py

13 lines
366 B
Python
Raw Permalink Normal View History

2024-05-23 14:47:20 +02:00
def approx_pi(i): # NE PAS EFFACER CETTE LIGNE
i = 16
"""
@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)**pi/(2*pi+1))
print(pi)
return pi