Posts by Talles • 1 point
1 post
-
-2
votes1
answer128
viewsQ: Calculate pi with the python sequence
A program that calculates X by the series: 4-4/3+4/5-4/7+4/9-4/11... with precision of 10^-4 I have done so, but he lists the term and does not sum. What q is wrong? n = 1 while True: n = n + 1…