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