In [1]:
def pi(N):
    x=1
    for n in range(3,3+4*N,4):
        x+=-1/n+1/(n+2)
    return x*4
In [2]:
pi(10)
Out[2]:
3.189184782277595
In [3]:
pi(1000000)
Out[3]:
3.1415931535895973
In [4]:
def add(x,y):
    return x+y
In [5]:
add(3,5)
Out[5]:
8
In [6]:
def fortytwo():
    return 42
In [7]:
fortytwo()
Out[7]:
42
In [8]:
def f(x=3,y=5):
    return x-y
In [9]:
f()
Out[9]:
-2
In [10]:
f(11)
Out[10]:
6
In [11]:
f(y=1)
Out[11]:
2
In [12]:
f(8,7)
Out[12]:
1
In [ ]: