×

Python Function

Python Function

A Python function is a reusable, organized block of code that is used to perform the specific task. The functions are the appropriate way to divide an extensive program into a useful block. It also provides reusability to our program. A code block can be reused by calling the function.

All functions are treated as an object in Python, so it is more flexible than other programming languages.

 In Python, there are two types of functions:

  • Built-in functions – These functions are the part of the Python libraries and packages. These are also called as pre-defined functions. You can learn it from here.( https://www.tutorialandexample.com/python-built-in-functions/)
  • User-defined functions – These functions are defined by the user as per their requirement. We will learn the user-defined function in this tutorial.

Creating a function

Below are the basic steps to create a user-defined function.

  • The def keyword is used to define function followed by the function name.
  • Arguments should be written inside the opening and closing parentheses of the function, and end the declaration with a colon.
  • Write the program statements to be executed within the function body.
  • The return statement is optional. It should be written at the end of the function.

The syntax is given below:

def function_name(argument list):
    The function body
    ………………
    ………………    
    return 

The argument list can contain none or more arguments. The arguments are also called parameters. The function body contains indented statements. The function body gets executed whenever the function is called.  The arguments can be optional or mandatory.

Calling a Function

After declaring a function, it must be called using function name followed by parentheses with appropriate argument.

Note: It is necessary to define a function before calling; otherwise, it will give an error.

Consider the following examples:

Example-1

def hello():

    print('Hello')

hello()

Output:

Hello

Example-2

def sum(a,b):
# define a function sum with two argument
    c=a+b
    return c
#returning the value to calling function

z=sum(10,20)
print("The sum is:",z) 

Output:

The sum is: 30

Parameter Passing

There are two most common strategies of passing an argument to a function.

  • Call by Value

This strategy is used in C, C++ or Java but not used in Python. In call by value, the values of actual parameters are copied to function’s formal parameters, and both types of parameters are stored in separate memory locations. So if we made any changes in formal parameters, that changes will not be reflected in actual parameters of the caller function.

  • Call by Reference

The functions are called by reference in Python, which means all the changes performed to the inside the function reflected in an actual parameter.

Consider the following examples:

Example 1:

def mul(m,n):
    c=m*n
    return c
a=int(input("Enter the number:"))
b=int(input("Enter the number:"))
z=mul(a,b)
print("The multiply is:",z)

Output:

Enter the number: 60
Enter the number: 50
The sum is: 110 

In the above program, defined function is mul(m,n), where m and n are formal arguments, and caller function is mul(a,b), where a and b are the actual argument.

Example-2

 Write a program to take a list and return list with a unique element

def dup_list(list):

    list1=[]

    for i in list:

        if i not in list1:

            list1.append(i)

    return list1

list = [1,1,2,1,3,3,4,4,5,6,5,7]
print('The duplicate list is:',list)

z=dup_list(list)

print('The unique list is:',z)

Output:

The duplicate list is:[1,1,2,1,3,3,4,4,5,6,5,7]
The unique list is: [1, 2, 3, 4, 5, 6, 7] 

Types of arguments

There may be several types of arguments, which are listed below

  1. Required arguments
  2. Default arguments
  3. Keyword arguments
  4. Variable-length arguments
  1. Required Arguments

The required arguments are those arguments which are mandatory to pass at the time of function calling with exact match their positions in the function call and function definition. If the argument is not provided in the function call or made any changes in arguments position, then Python interpreter will show an error.

Example 1

def sqr_list(list):

    emp_list= []

    for i in list:

        emp_list.append(i**2)

    print(emp_list)



sqr_list([1,2,3,4,5,6,7,8,9,10])

Output:

[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

 Example 2.

defsum(a,b):

    c=a+b

    return c

print(sum(20))#There is only one argument is passed. 

Output:

line 4, in <module>
    print(sum(20))
TypeError: sum() missing 1 required positional argument: 'b' 
  •  Default argument

The default arguments are those arguments that assign a value with the argument at the time of function definition. If the argument is not specified at the time of function call, then it will be initialized with the value which was given in the definition. For example

Example 1

def student(name,age=21):
    print('My name is:',name)
    print('My age is',age)
student('Dev') #Here argument age is not passed default value is provided in definition
student('Himanshu',25) # The value of age is overwritten

Output:

My name is: Dev
My age is 21
My name is: Himanshu
My age is 25 
  • Keyword arguments

The benefit of keyword arguments is that we can pass the argument in the random order, which means the order of passing arguments doesn’t matter. Each argument treated as the keyword. It will match argument names in the function definition and function call.  If

 Example-1

def employee(id,name,age):

    print('Employee Id:',id,'\nEmployee
Name:',name,'\nEmployee
Age:',age)

employee(age=30,id=1,name='Sushant')

Output:

Employee Id: 1
Employee Name: Sushant
Employee Age: 30 

In the above program, we have passed the arguments in a different order in function calls. The name of arguments must be the same as function definition; otherwise, it will show an error.

  • We can pass keyword argument and required argument together. For example:
def employee(name,amount,message):

    print(message,name,'amount
credited',amount)

employee('Robert',message='Hello',amount=20000)

Output:

Hello Robert amount credited 20000

In the above program, the first argument is the required argument followed by two keyword arguments.

Note: It is important to remember that required argument must not pass after keyword argument; otherwise, it will show an error.

  • Variable-length arguments

Sometimes we are not sure about numbers of argument that can be passed to a function, for such scenario, we use variable-length arguments.

There are two types of variable-length argument in a function:

  • *args (Non-Keyword argument)
  • *kwargs (Keyword argument)

*args (Non-Keyword argument)

Python provides *args which allows to pass the variable number of argument in a function.

We should use an asterisk ( * ) before the argument name to pass variable length arguments. The arguments are passed as a tuple, and these passed arguments make tuple inside the function with the same name as the argument excluding asterisk *. For example:

def variable(*names):

    for i in names:

        print(i)



variable('Devansh','Himanshu','Anubhav','Ashraf')

Output:

Devansh
Himanshu
Anubhav
Ashraf 

**kwarg arguments

We cannot pass the keyword argument using *args. Python provides **kwargs; It allows us to pass variable-length of keyword argument to the function.

We must use the double-asterisk ** before the argument name to denote this type of argument. The arguments are passed as a dictionary, and these arguments make a dictionary inside the function with name same as the parameter without double asterisk **. For example:

def variable(**names):

    for key,value in names.items():

        print(key,value)



variable(first_name="John",last_name='Wick',Age=25,Salary=34000)

Output:

first_name John
last_name Wick
Age 25
Salary 34000 

Lambda (Anonymous) Function

Python lambda is also known as an anonymous function, which means function is declared with no name. Lambda functions are different than a regular function. It has a more concise syntax. The syntax is following

lambda arguments : expression

The lambda is used to define an anonymous function. It can consist number of argument, but can consist only one expression.

z = lambda x:x**2

print("The square is:",z(10))

Output:

The square number is : 100

Scope of Variable

The scope of variables can be defined by the place where the variables have declared. Variables can be defined with two types of scope.

  1. Global Variable

The global variables are defined outside the function, hence global variables can be accessed throughout the program.

  • Local Variable

The local variables are defined inside the function, hence local variables can be accessed only inside the function.

Consider the following example:

Example-1 Global Variable

sum = 0
# variable defined outside the function
def add(a,b):
sum = a+b # the variable sum accessed inside the function
print(sum)
add(54,65)
print('The value of sum ouside the function:',sum) 

Output:

The sum is: 119
The value od sum ouside the function: 0 

Example-2 Local Variable

def mul(a,b):

    c = a*b # The variable c is defined inside the function

    print('The multiply is:',c)

mul(20,30)

print(c) # The variable c is local variable cannot access outside the function

Output:

The multiply is: 600
line 6, in <module>
NameError: name 'c' is not defined 

Related Topics

Python Line Break

Introduction In this tutorial, you will learn line breaks in python.In Python, the new line character is used to indicate the start of a new line and the end of an...

5 minutes read.

Change Data Type in Python

Python is a dynamic language where it is not always required to consider every variable type. Python supports a wide range of data types, but There are mainly six data...

3 minutes read.

SKLearn Linear Module

The SK learn linear module is one such module that helps to study the relationship between the independent and dependent variables.The linear module can be implemented by using the best...

3 minutes read.

Python Selectors

Python: Python is an interactive and more accessible language than any other programming language. The python programming language uses a variety of libraries to perform the operations in a faster way....

4 minutes read.

Python Read Excel file

Python Read Excel file Excel is the spreadsheet application for Window, which is developed by Microsoft. The Excel stores data in the tabular form. It provides easy access to analyze and maintain the...

3 minutes read.

Python program to find Fibonacci series

Python program to find Fibonacci series A Fibonacci series is an integer sequence of 0, 1, 1, 2, 3, 5, 8.... We can identify the Fibonacci series as any number sequence...

2 minutes read.

Check Palindrome in Python

Python is an object-oriented high-level programming language. Python has dynamic semantics and has high-level built-in data structures which support dynamic typing and dynamic binding. Python provides rapid development. It has...

4 minutes read.

Python Knapsack problem

Python Knapsack problem Before we dig down about Knapsack problems in Python, first let's have a look at what is actually a knapsack problem. What is a knapsack problem? A problem from the...

5 minutes read.

Python Assert

Python Assert Python provides an assert statement which is used to check the logical expression. If the given logical expression is true, then it precedes for the next line; otherwise, it raises an...

2 minutes read.

Is Python Object Oriented Programming language

In this tutorial, we will see whether python also belongs to an object-oriented programming language like several others. We will also see the advantages of using OOPs. Further, we will...

4 minutes read.

How to Read html page in python

Html is a Hyper Text Markup language is a standard language used for creating webpages. HTML is the name of the language used to describe the construction of Web pages....

4 minutes read.

Sublime Python

SUBLIME: A compact, cross-platform code editor called Sublime Text 3 (ST3) is well-known for its quickness, usability, and robust community support. Although it's a fantastic editor out of the box, its...

6 minutes read.

Best Python AI Projects

Artificial consciousness is advancing quickly, from Chabot's to self-driving vehicles. Because of the various advantages and development presented by AI, numerous enterprises have begun searching for AI-fueled applications. Thus, there...

7 minutes read.

How to change a value of a tuple in Python

Python is the language for newly evolving technologies and has become one of the most popular programming languages in the world. It is used in everything right, from simple algorithm...

3 minutes read.

Assignment Operators in Python

The prime usage of Assignment Operators is to assign values to variables. These are taken into account to do operations on values and variables. There are some special symbols in python...

4 minutes read.

Python data science course

What is meant by Data Science? When processing raw, structured, and unstructured data utilizing various technologies, algorithms, and the scientific method, data science is a detailed study of the enormous quantity...

4 minutes read.

Rank Based Percentile GUI Calculator using PyQt5 in Python

PyQt5: PyQt5 is one of several solutions that Python offers for creating GUI applications. Cross-platform GUI toolkit PyQt5 is a collection of Python interfaces for Qt version 5. With the capabilities...

3 minutes read.

What is Python 2

Python is a widely used high-level language. The initial work on developing python was begun in the late 1980s. In 1989, Guido Van Rossum started to work on it. Initially,...

3 minutes read.

Closest Pair of Points in Python

We are given an array of n points in the plane, and our task is to find the pair of points in the array that are the closest to each...

3 minutes read.

Find Median of List in Python

The median is an enlightening measurement that is utilized as a proportion of the focal inclination of a circulation. It is equivalent to the centre worth of the conveyance. There...

3 minutes read.