( )
 ). docstring
.( : )
and is indented.return
 statement to return a value from the function.>>> def square(x):
return x * x
...
>>> square (6)
36
>>>
Defining a function only gives it a name, specifies the parameters that are to be included in the function and structures the blocks of code.
>>> def func_1():
print ("I am learning python tutorial.")
>>> func_1()
I am learning python tutorial.
>>>
return[expression] is used to send back the control to the caller with the expression.
In case no expression is given after return it will return None.
In other words return statement is used to exit the Function definition.
>>> def nsquare(x, y):
return (x*x + 2*x*y + y*y)
>>> print("The square of the sum of 2 and 3 is : ", nsquare(2, 3))
The square of the sum of 2 and 3 is : 25
>>>
Function arguments can have default values in Python. We can provide a default value to an argument by using the assignment operator (=).
A default value can be written in the format "argument1 = value", therefore we will have the option to declare or not declare a value for those arguments. See the following example.
>>> def nsquare(x, y = 2):
return (x*x + 2*x*y + y*y)
>>> print("The square of the sum of 2 and 3 is : ", nsquare(2))
The square of the sum of 2 and 3 is : 16
>>> print("The square of the sum of 2 and 4 is : ", nsquare(2,4))
The square of the sum of 2 and 4 is : 36
>>>
Python allows functions to be called using keyword arguments. When we call functions in this way, the order (position) of the arguments can be changed. Following result.
>>> def ages(ramana, chanti = 27, suresh = 23):
print('Ages is : Ramana is - ', ramana,', Chanti - ',chanti, ', Suresh - ',suresh)
>>> ages(28, 25)
Ages is : Ramana is - 28 , Chanti - 25 , Suresh - 23
>>> ages (27, suresh = 22)
Ages is : Ramana is - 27 , Chanti - 27 , Suresh - 22
>>> ages(suresh = 24, chanti = 26, ramana = 27)
Ages is : Ramana is - 27 , Chanti - 26 , Suresh - 24
>>>
>>> def printme( str ):
"This prints a passed string into this function"
print (str)
return;
>>> printme( str = "My string")
My string
>>>
The arbitrary argument list is an another way to pass arguments to a function. In the function body, these arguments will be wrapped in a tuple and it can be defined with *args construct. Before this variable, you can define a number of arguments or no argument.
>>> def greet(*names):
"""This function greets all
the person in the names tuple."""
for name in names:
print("Hello",name)
>>> greet("Venkat","Ramana","Chanti","Suresh")
Hello Venkat
Hello Ramana
Hello Chanti
Hello Suresh
>>>
These functions are called anonymous because they are not declared in the standard manner by using the def keyword. You can use the lambda keyword to create small anonymous functions.
An anonymous function cannot be a direct call to print because lambda requires an expression
We use lambda functions when we require a nameless function for a short period of time.
Lambda forms can take any number of arguments but return just one value in the form of an expression. They cannot contain commands or multiple expressions.
Lambda functions can have any number of arguments but only one expression. The expression is evaluated and returned. Lambda functions can be used wherever function objects are required.
Lambda functions have their own local namespace and cannot access variables other than those in their parameter list and those in the global namespace.
>>> # lambda functions Program
>>> double = lambda x: x * 3
>>> print(double(9))
27
>>>
n the above program, lambda x: x * 2
is the lambda function. Here x is the argument and x * 2
is the expression that gets evaluated and returned.
This function has no name. It returns a function object which is assigned to the identifier double
. We can now call it as a normal function. The statement
Recursion is a way of programming or coding a problem, in which a function calls itself one or more times in its body. Usually, it is returning the return value of this function call. If a function definition fulfils the condition of recursion, we call this function a recursive function.
Following is an example of recursive function to find the factorial of an integer.
Factorial of a number is the product of all the integers from 1 to that number.
>>> def factorial(n):
print("factorial has been called with n = " + str(n))
if n == 1:
return 1
else:
res = n * factorial(n-1)
print("intermediate result for ", n, " * factorial(" ,n-1, "): ",res)
return res
>>> print(factorial(5))
factorial has been called with n = 5
factorial has been called with n = 4
factorial has been called with n = 3
factorial has been called with n = 2
factorial has been called with n = 1
intermediate result for 2 * factorial( 1 ): 2
intermediate result for 3 * factorial( 2 ): 6
intermediate result for 4 * factorial( 3 ): 24
intermediate result for 5 * factorial( 4 ): 120
120
>>>