Function Python

def inc(x): 
    return x + 1
foo = 10
foo = inc(foo)
print foo