In [ ]:
def double(x):
"""optional doc string
where you can specifiy what this does
ex: this function multiplies input by 2"""
return x*2
In [ ]:
In [ ]:
In [ ]: