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