Functions Without returns : return « Function « Python Tutorial






def proc(x): 
    print x                       

x = proc('testing 123...') 
print x








10.3.return
10.3.1.Values can be returned from functions using the return statement.
10.3.2.Return Values and Function Types
10.3.3.returns a list
10.3.4.returns a tuple
10.3.5.Demonstrates parameters and return values
10.3.6.Return a lambda function
10.3.7.Functions Without returns