def approx_pi(i): i = 5 pi = 0 for j in range(i+1): pi+=4*((-1)**j/(2*j+1)) print(pi)