Return Values and Function Types : return « Function « Python Tutorial






def hello():
     print 'hello world'
res = hello()
print res
print type(res)








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