Python Functions
Functions are the most important aspect of an application. A function can be defined as the organized block of reusable code which can be called whenever required.
Python allows us to divide a large program into the basic building blocks known as function. The function contains the set of programming statements enclosed by {}.
In other words, we can say that the collection of functions creates a program. The function is also known as procedure or subroutine in other programming languages. Python provide us various inbuilt functions like range() or print(). Although, the user can create its functions which can be called user-defined functions. Advantage of functions in pythonThere are the following advantages of C functions.
Creating a functionIn python, we can use def keyword to define the function. The syntax to define a function in python is given below.
The function block is started with the colon (:) and all the same level block statements remain at the same indentation.
A function can accept any number of parameters that must be the same in the definition and function calling. Function callingIn python, a function must be defined before the function calling otherwise the python interpreter gives an error. Once the function is defined, we can call it from another function or the python prompt. To call the function, use the function name followed by the parentheses. A simple function that prints the message "Hello Word" is given below.
Output: hello world Parameters in functionThe information into the functions can be passed as the parameters. The parameters are specified in the parentheses. We can give any number of parameters, but we have to separate them with a comma. Consider the following example which contains a function that accepts a string as the parameter and prints it. Example 1
Example 2
Output: Enter a: 10 Enter b: 20 Sum = 30 Call by reference in PythonIn python, all the functions are called by reference, i.e., all the changes made to the reference inside the function revert back to the original value referred by the reference. However, there is an exception in the case of mutable objects since the changes made to the mutable objects like string do not revert to the original string rather, a new string object is made, and therefore the two different objects are printed. Example 1 Passing Immutable Object (List)
Output: list inside function = [10, 30, 40, 50, 20, 30] list outside function = [10, 30, 40, 50, 20, 30] Example 2 Passing Mutable Object (String)
Output: printing the string inside function : Hi I am there Hows you printing the string outside function : Hi I am there Types of argumentsThere may be several types of arguments which can be passed at the time of function calling.
Required ArgumentsTill now, we have learned about function calling in python. However, we can provide the arguments at the time of function calling. As far as the required arguments are concerned, these are the arguments which are required to be passed at the time of function calling with the exact match of their positions in the function call and function definition. If either of the arguments is not provided in the function call, or the position of the arguments is changed, then the python interpreter will show the error. Consider the following example. Example 1
Output: Enter the name?John Hi John Example 2
Output: Enter the principle amount? 10000 Enter the rate of interest? 5 Enter the time in years? 2 Simple Interest: 1000.0 Example 3
Output: TypeError: calculate() missing 1 required positional argument: 'b' Keyword argumentsPython allows us to call the function with the keyword arguments. This kind of function call will enable us to pass the arguments in the random order. The name of the arguments is treated as the keywords and matched in the function calling and definition. If the same match is found, the values of the arguments are copied in the function definition. Consider the following example. Example 1
Output: printing the message with John and hello Example 2 providing the values in different order at the calling
Output: Simple Interest: 1900.0 If we provide the different name of arguments at the time of function call, an error will be thrown. Consider the following example. Example 3
Output: TypeError: simple_interest() got an unexpected keyword argument 'time' The python allows us to provide the mix of the required arguments and keyword arguments at the time of function call. However, the required argument must not be given after the keyword argument, i.e., once the keyword argument is encountered in the function call, the following arguments must also be the keyword arguments. Consider the following example. Example 4
Output: printing the message with John , hello ,and David The following example will cause an error due to an in-proper mix of keyword and required arguments being passed in the function call. Example 5
Output: SyntaxError: positional argument follows keyword argument Default ArgumentsPython allows us to initialize the arguments at the function definition. If the value of any of the argument is not provided at the time of function call, then that argument can be initialized with the value given in the definition even if the argument is not specified at the function call. Example 1
Output: My name is john and age is 22 Example 2
Output: My name is john and age is 22 My name is David and age is 10 Variable length ArgumentsIn the large projects, sometimes we may not know the number of arguments to be passed in advance. In such cases, Python provides us the flexibility to provide the comma separated values which are internally treated as tuples at the function call. However, at the function definition, we have to define the variable with * (star) as *<variable - name >. Consider the following example. Example
Output: type of passed argument is Scope of variablesThe scopes of the variables depend upon the location where the variable is being declared. The variable declared in one part of the program may not be accessible to the other parts. In python, the variables are defined with the two types of scopes.
The variable defined outside any function is known to have a global scope whereas the variable defined inside a function is known to have a local scope. Consider the following example. Example 1
Output: hello !! I am going to print a message. File "/root/PycharmProjects/PythonTest/Test1.py", line 5, in Example 2
Output: The sum is 60 Value of sum outside the function: 0 |