Posts by Henrique Carneiro • 23 points
1 post
-
2
votes1
answer1543
viewsQ: Calculate pi with python and recursion
Calculate pi by formula pi=(s*32)**(1/3), being s=(1/1^3)-(1/3^3)+(1/5^3)... Amount of s determined by the user. It should be developed in python with use of recursivity. I’m not getting the…