Define function: return int value : Function Return « Function « Python






Define function: return int value

Define function: return int value

def inc(x): 
    return x + 1

foo = 10
foo = inc(foo)
print foo

           
       








Related examples in the same category

1.Return more than one parametersReturn more than one parameters
2.A Simple function definition: return a tuple.A Simple function definition: return a tuple.
3.Save function result into a variableSave function result into a variable
4.Return three value Return three value