SlideShare a Scribd company logo
2
Most read
3
Most read
14
Most read
DISCOVER . LEARN . EMPOWER
PYTHON FUNCTIONS
UNIVERSITY INSTITUTE OF
ENGINEERING
DEPARTMENT OF COMPUTER SCIENCE
AND ENGINEERING
Python Functions
• A function is a block of organized, reusable code that is used to perform a single, related action. Functions provides better
modularity for your application and a high degree of code reusing.
• As you already know, Python gives you many built-in functions like print() etc. but you can also create your own functions.
These functions are called user-defined functions.
2
Defining a Function
Here are simple rules to define a function in Python:
• Function blocks begin with the keyword def followed by the function name and parentheses ( ( ) ).
• Any input parameters or arguments should be placed within these parentheses. You can also define parameters inside these
parentheses.
• The first statement of a function can be an optional statement - the documentation string of the function or docstring.
• The code block within every function starts with a colon (:) and is indented.
• The statement return [expression] exits a function, optionally passing back an expression to the caller. A return statement
with no arguments is the same as return None.
• Declaring Docstrings: The docstrings are declared using “””triple double quotes””” just below the class, method or
function declaration. All functions should have a docstring.
• Accessing Docstrings: The docstrings can be accessed using the __doc__ method of the object or using the help function.
Syntax:
def functionname( parameters ):
“””function_docstring”””
function_suite
return [expression]
By default, parameters have a positional behavior, and you need to inform them in the same order that they were defined. 3
Calling a Function
• Example:
def printme( str ):
“””This prints a passed string function”””
print(str)
return
printme("I'm first call to user defined function!")
printme("Again second call to the same function")
This would produce following result:
I'm first call to user defined function!
Again second call to the same function
4
Pass by reference vs value
All parameters (arguments) in the Python language are passed by reference. It means if you
change what a parameter refers to within a function, the change also reflects back in the calling
function. For example:
def changeme( mylist ):
mylist.append([1,2,3,4])
print("Values inside the function: ", mylist)
return
mylist = [10,20,30]
changeme( mylist )
print("Values outside the function: ", mylist)
So this would produce following result:
Values inside the function: [10, 20, 30, [1, 2, 3, 4]]
Values outside the function: [10, 20, 30, [1, 2, 3, 4]]
5
6
# Here x is a new reference to same list lst
def myFun(x):
x[0] = 20
lst = [10,11,12,13,14,15]
myFun(lst)
print(lst)
Output:
[20, 11, 12, 13, 14, 15]
When we pass a reference and change the received reference to something else, the
connection between passed and received parameter is broken. For example, consider
below program.
# Here x is a new reference to same list lst
def myFun(x):
x=[20,30,40]
# Driver Code (Note that lst is not modified ) after function call.
lst =[10,11,12,13,14,15]
myFun(lst)
print(lst)
Output:
[10, 11, 12, 13, 14, 15]
7
There is one more example where argument is being passed by reference but inside the function, but the reference is being
over-written.
def changeme( mylist ):
mylist = [1,2,3,4]
print ("Values inside the function: ", mylist )
return
mylist = [10,20,30]
changeme( mylist )
print("Values outside the function: ", mylist)
The parameter mylist is local to the function changeme. Changing mylist within the function does not affect mylist. The
function accomplishes nothing and finally this would produce following result:
Values inside the function: [1, 2, 3, 4]
Values outside the function: [10, 20, 30]
8
Another example to demonstrate that reference link is broken if we assign a new value
(inside the function).
def myFun(x):
x=20
x=10
myFun(x)
print(x)
Output:
10
9
Function Arguments:
A function by using the following types of formal arguments::
Required arguments
Keyword arguments
Default arguments
Variable-length arguments
Required arguments:
Required arguments are the arguments passed to a function in correct positional order.
def printme( str ):
print (str)
return
printme()
This would produce following result:
Traceback (most recent call last):
File "C:/Users/hp/Desktop/UT1.PY", line 4, in <module>
printme()
TypeError: printme() missing 1 required positional argument: 'str'
10
Keyword arguments:
Keyword arguments are related to the function calls. When you use keyword arguments in a
function call, the caller identifies the arguments by the parameter name.
This allows you to skip arguments or place them out of order because the Python
interpreter is able to use the keywords provided to match the values with parameters.
def printme( str ):
print (str)
return
printme( str = "My string")
This would produce following result:
My string
11
Following example gives more clear picture. Note, here order of the parameter does not
matter:
def printinfo( name, age ):
print ("Name: ", name, end=" ")
print ("Age ", age)
return
printinfo( age=50, name="miki" )
This would produce following result:
Name: miki Age 50
12
Default arguments:
A default argument is an argument that assumes a default value if a value is not provided in
the function call for that argument.
Following example gives idea on default arguments, it would print default age if it is not
passed:
def printinfo( name, age = 35 ):
print("Name: ", name , end=" ")
print ("Age ", age)
return
printinfo( age=50, name="miki")
printinfo( name="miki" )
This would produce following result:
Name: miki Age 50
Name: miki Age 35
13
Variable-length arguments:
You may need to process a function for more arguments than you specified while defining
the function. These arguments are called variable-length arguments and are not named in
the function definition, unlike required and default arguments.
The general syntax for a function with non-keyword variable arguments is this:
def functionname([formal_args,] *var_args_tuple ):
“””function_docstring”””
function_suite
return [expression]
14
An asterisk (*) is placed before the variable name that will hold the values of all
non_keyword variable arguments. This tuple remains empty if no additional arguments are
specified during the function call. For example:
def printinfo( arg1, *vartuple ):
print("Output is: ")
print (arg1)
for var in vartuple:
print(var)
return
printinfo( 10 )
printinfo( 70, 60, 50 )
This would produce following result:
Output is:
10
Output is:
70
60
50
15
The Anonymous Functions:
• You can use the lambda keyword to create small anonymous functions. These functions are called anonymous because
they are not declared in the standard manner by using the def keyword.
• 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.
• An anonymous function cannot be a direct call to print because lambda requires an expression.
• Lambda functions have their own local namespace and cannot access variables other than those in their parameter list
and those in the global namespace.
• Although it appears that lambda's are a one-line version of a function, they are not
equivalent to inline statements in C or C++, whose purpose is by passing function stack
allocation during invocation for performance reasons.
Syntax:
lambda [arg1 [,arg2,.....argn]]:expression
Example:
sum = lambda arg1, arg2: arg1 + arg2
print("Value of total : ", sum( 10, 20 ))
This would produce following result:
Value of total : 30
16
Scope of Variables:
• All variables in a program may not be accessible at all locations in that program. This depends on where you have
declared a variable.
• The scope of a variable determines the portion of the program where you can access a particular identifier.
• There are two basic scopes of variables in Python:
Global variables
Local variables
Global vs. Local variables:
• Variables that are defined inside a function body have a local scope, and those defined outside have a global scope.
• This means that local variables can be accessed only inside the function in which they are declared whereas global
variables can be accessed throughout the program body by all functions.
17
Example:
total = 0 # This is global variable.
def sum( arg1, arg2 ):
total = arg1 + arg2
print ("Inside the function local total : ", total)
return total
# Now you can call sum function
sum( 10, 20 )
print ("Outside the function global total : ", total)
OUTPUT:
Inside the function local total : 30
Outside the function global total : 0
18
• Global variables can be read from local scope.
• def demo():
print(S)
S=“I love python”
demo()
print(S)
We can use local and global vaiable with the same name.
• def demo():
S=“I love programming”
print(S)
S=“I love python”
demo()
print(S)
19
The global statement
• We can use global keyword, if we want to change the value of a global variable within a function and outside the function
too.
• def demo():
• global S
S=“I love programming”
print(S)
S=“I love python”
demo()
print(S)
20
Returning multiple values
• It is possible in python to return multiple values.
• Example 1:
• Def calculate(num1, num2):
• return num1+num2, num1-num2
• print(“ “, calculate(10,20))
• Example 2:
• Def calculate(num1, num2):
• return num1+num2, num1-num2
• add, sub=calculate(10,20)
• print(“add= “, add,”sub=“, sub)
21
THANK YOU
36

More Related Content

Similar to Python Functions.pptx (20)

PDF
3-Python Functions.pdf in simple.........
mxdsnaps
 
PPTX
UNIT 3 python.pptx
TKSanthoshRao
 
PPTX
2 Functions2.pptx
RohitYadav830391
 
PDF
functions- best.pdf
MikialeTesfamariam
 
PPTX
UNIT-02-pythonfunctions python function using detehdjsjehhdjejdhdjdjdjddjdhdhhd
tony8553004135
 
PPTX
2_3 Functions 5d.pptx2_3 Functions 5d.pptx
usha raj
 
PPTX
Function in Python.pptx by Faculty at gla university in mathura uttar pradesh
bloodskullgoswami
 
PPTX
cbse class 12 Python Functions2 for class 12 .pptx
tcsonline1222
 
PDF
Functions2.pdf
prasnt1
 
PDF
Function
GauravGautam224100
 
PPTX
CHAPTER 01 FUNCTION in python class 12th.pptx
PreeTVithule1
 
PPTX
functioninpython-1.pptx
SulekhJangra
 
PPTX
functions.pptx
KavithaChekuri3
 
PPTX
Lecture 08.pptx
Mohammad Hassan
 
PDF
Python functions
Prof. Dr. K. Adisesha
 
PDF
ESIT135 Problem Solving Using Python Notes of Unit-2 and Unit-3
prasadmutkule1
 
PPTX
Functions in Python with all type of arguments
riazahamed37
 
PDF
functions notes.pdf python functions and opp
KirtiGarg71
 
PPTX
Functions in python
colorsof
 
3-Python Functions.pdf in simple.........
mxdsnaps
 
UNIT 3 python.pptx
TKSanthoshRao
 
2 Functions2.pptx
RohitYadav830391
 
functions- best.pdf
MikialeTesfamariam
 
UNIT-02-pythonfunctions python function using detehdjsjehhdjejdhdjdjdjddjdhdhhd
tony8553004135
 
2_3 Functions 5d.pptx2_3 Functions 5d.pptx
usha raj
 
Function in Python.pptx by Faculty at gla university in mathura uttar pradesh
bloodskullgoswami
 
cbse class 12 Python Functions2 for class 12 .pptx
tcsonline1222
 
Functions2.pdf
prasnt1
 
CHAPTER 01 FUNCTION in python class 12th.pptx
PreeTVithule1
 
functioninpython-1.pptx
SulekhJangra
 
functions.pptx
KavithaChekuri3
 
Lecture 08.pptx
Mohammad Hassan
 
Python functions
Prof. Dr. K. Adisesha
 
ESIT135 Problem Solving Using Python Notes of Unit-2 and Unit-3
prasadmutkule1
 
Functions in Python with all type of arguments
riazahamed37
 
functions notes.pdf python functions and opp
KirtiGarg71
 
Functions in python
colorsof
 

Recently uploaded (20)

PPTX
MODULE 03 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
PPTX
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
PDF
3rd International Conference on Machine Learning and IoT (MLIoT 2025)
ClaraZara1
 
PPTX
OCS353 DATA SCIENCE FUNDAMENTALS- Unit 1 Introduction to Data Science
A R SIVANESH M.E., (Ph.D)
 
PPTX
MODULE 04 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
PPTX
Water Resources Engineering (CVE 728)--Slide 4.pptx
mohammedado3
 
PPTX
fatigue in aircraft structures-221113192308-0ad6dc8c.pptx
aviatecofficial
 
PPTX
Knowledge Representation : Semantic Networks
Amity University, Patna
 
PDF
Submit Your Papers-International Journal on Cybernetics & Informatics ( IJCI)
IJCI JOURNAL
 
PPT
Testing and final inspection of a solar PV system
MuhammadSanni2
 
PDF
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
PPTX
Final Major project a b c d e f g h i j k l m
bharathpsnab
 
PPTX
美国电子版毕业证南卡罗莱纳大学上州分校水印成绩单USC学费发票定做学位证书编号怎么查
Taqyea
 
PDF
Water Industry Process Automation & Control Monthly July 2025
Water Industry Process Automation & Control
 
PDF
Halide Perovskites’ Multifunctional Properties: Coordination Engineering, Coo...
TaameBerhe2
 
PPTX
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
PPTX
DATA BASE MANAGEMENT AND RELATIONAL DATA
gomathisankariv2
 
PPTX
What is Shot Peening | Shot Peening is a Surface Treatment Process
Vibra Finish
 
PPTX
Distribution reservoir and service storage pptx
dhanashree78
 
PPT
Footbinding.pptmnmkjkjkknmnnjkkkkkkkkkkkkkk
mamadoundiaye42742
 
MODULE 03 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
Mechanical Design of shell and tube heat exchangers as per ASME Sec VIII Divi...
shahveer210504
 
3rd International Conference on Machine Learning and IoT (MLIoT 2025)
ClaraZara1
 
OCS353 DATA SCIENCE FUNDAMENTALS- Unit 1 Introduction to Data Science
A R SIVANESH M.E., (Ph.D)
 
MODULE 04 - CLOUD COMPUTING AND SECURITY.pptx
Alvas Institute of Engineering and technology, Moodabidri
 
Water Resources Engineering (CVE 728)--Slide 4.pptx
mohammedado3
 
fatigue in aircraft structures-221113192308-0ad6dc8c.pptx
aviatecofficial
 
Knowledge Representation : Semantic Networks
Amity University, Patna
 
Submit Your Papers-International Journal on Cybernetics & Informatics ( IJCI)
IJCI JOURNAL
 
Testing and final inspection of a solar PV system
MuhammadSanni2
 
Basic_Concepts_in_Clinical_Biochemistry_2018كيمياء_عملي.pdf
AdelLoin
 
Final Major project a b c d e f g h i j k l m
bharathpsnab
 
美国电子版毕业证南卡罗莱纳大学上州分校水印成绩单USC学费发票定做学位证书编号怎么查
Taqyea
 
Water Industry Process Automation & Control Monthly July 2025
Water Industry Process Automation & Control
 
Halide Perovskites’ Multifunctional Properties: Coordination Engineering, Coo...
TaameBerhe2
 
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
DATA BASE MANAGEMENT AND RELATIONAL DATA
gomathisankariv2
 
What is Shot Peening | Shot Peening is a Surface Treatment Process
Vibra Finish
 
Distribution reservoir and service storage pptx
dhanashree78
 
Footbinding.pptmnmkjkjkknmnnjkkkkkkkkkkkkkk
mamadoundiaye42742
 
Ad

Python Functions.pptx

  • 1. DISCOVER . LEARN . EMPOWER PYTHON FUNCTIONS UNIVERSITY INSTITUTE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
  • 2. Python Functions • A function is a block of organized, reusable code that is used to perform a single, related action. Functions provides better modularity for your application and a high degree of code reusing. • As you already know, Python gives you many built-in functions like print() etc. but you can also create your own functions. These functions are called user-defined functions. 2
  • 3. Defining a Function Here are simple rules to define a function in Python: • Function blocks begin with the keyword def followed by the function name and parentheses ( ( ) ). • Any input parameters or arguments should be placed within these parentheses. You can also define parameters inside these parentheses. • The first statement of a function can be an optional statement - the documentation string of the function or docstring. • The code block within every function starts with a colon (:) and is indented. • The statement return [expression] exits a function, optionally passing back an expression to the caller. A return statement with no arguments is the same as return None. • Declaring Docstrings: The docstrings are declared using “””triple double quotes””” just below the class, method or function declaration. All functions should have a docstring. • Accessing Docstrings: The docstrings can be accessed using the __doc__ method of the object or using the help function. Syntax: def functionname( parameters ): “””function_docstring””” function_suite return [expression] By default, parameters have a positional behavior, and you need to inform them in the same order that they were defined. 3
  • 4. Calling a Function • Example: def printme( str ): “””This prints a passed string function””” print(str) return printme("I'm first call to user defined function!") printme("Again second call to the same function") This would produce following result: I'm first call to user defined function! Again second call to the same function 4
  • 5. Pass by reference vs value All parameters (arguments) in the Python language are passed by reference. It means if you change what a parameter refers to within a function, the change also reflects back in the calling function. For example: def changeme( mylist ): mylist.append([1,2,3,4]) print("Values inside the function: ", mylist) return mylist = [10,20,30] changeme( mylist ) print("Values outside the function: ", mylist) So this would produce following result: Values inside the function: [10, 20, 30, [1, 2, 3, 4]] Values outside the function: [10, 20, 30, [1, 2, 3, 4]] 5
  • 6. 6 # Here x is a new reference to same list lst def myFun(x): x[0] = 20 lst = [10,11,12,13,14,15] myFun(lst) print(lst) Output: [20, 11, 12, 13, 14, 15]
  • 7. When we pass a reference and change the received reference to something else, the connection between passed and received parameter is broken. For example, consider below program. # Here x is a new reference to same list lst def myFun(x): x=[20,30,40] # Driver Code (Note that lst is not modified ) after function call. lst =[10,11,12,13,14,15] myFun(lst) print(lst) Output: [10, 11, 12, 13, 14, 15] 7
  • 8. There is one more example where argument is being passed by reference but inside the function, but the reference is being over-written. def changeme( mylist ): mylist = [1,2,3,4] print ("Values inside the function: ", mylist ) return mylist = [10,20,30] changeme( mylist ) print("Values outside the function: ", mylist) The parameter mylist is local to the function changeme. Changing mylist within the function does not affect mylist. The function accomplishes nothing and finally this would produce following result: Values inside the function: [1, 2, 3, 4] Values outside the function: [10, 20, 30] 8
  • 9. Another example to demonstrate that reference link is broken if we assign a new value (inside the function). def myFun(x): x=20 x=10 myFun(x) print(x) Output: 10 9
  • 10. Function Arguments: A function by using the following types of formal arguments:: Required arguments Keyword arguments Default arguments Variable-length arguments Required arguments: Required arguments are the arguments passed to a function in correct positional order. def printme( str ): print (str) return printme() This would produce following result: Traceback (most recent call last): File "C:/Users/hp/Desktop/UT1.PY", line 4, in <module> printme() TypeError: printme() missing 1 required positional argument: 'str' 10
  • 11. Keyword arguments: Keyword arguments are related to the function calls. When you use keyword arguments in a function call, the caller identifies the arguments by the parameter name. This allows you to skip arguments or place them out of order because the Python interpreter is able to use the keywords provided to match the values with parameters. def printme( str ): print (str) return printme( str = "My string") This would produce following result: My string 11
  • 12. Following example gives more clear picture. Note, here order of the parameter does not matter: def printinfo( name, age ): print ("Name: ", name, end=" ") print ("Age ", age) return printinfo( age=50, name="miki" ) This would produce following result: Name: miki Age 50 12
  • 13. Default arguments: A default argument is an argument that assumes a default value if a value is not provided in the function call for that argument. Following example gives idea on default arguments, it would print default age if it is not passed: def printinfo( name, age = 35 ): print("Name: ", name , end=" ") print ("Age ", age) return printinfo( age=50, name="miki") printinfo( name="miki" ) This would produce following result: Name: miki Age 50 Name: miki Age 35 13
  • 14. Variable-length arguments: You may need to process a function for more arguments than you specified while defining the function. These arguments are called variable-length arguments and are not named in the function definition, unlike required and default arguments. The general syntax for a function with non-keyword variable arguments is this: def functionname([formal_args,] *var_args_tuple ): “””function_docstring””” function_suite return [expression] 14
  • 15. An asterisk (*) is placed before the variable name that will hold the values of all non_keyword variable arguments. This tuple remains empty if no additional arguments are specified during the function call. For example: def printinfo( arg1, *vartuple ): print("Output is: ") print (arg1) for var in vartuple: print(var) return printinfo( 10 ) printinfo( 70, 60, 50 ) This would produce following result: Output is: 10 Output is: 70 60 50 15
  • 16. The Anonymous Functions: • You can use the lambda keyword to create small anonymous functions. These functions are called anonymous because they are not declared in the standard manner by using the def keyword. • 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. • An anonymous function cannot be a direct call to print because lambda requires an expression. • Lambda functions have their own local namespace and cannot access variables other than those in their parameter list and those in the global namespace. • Although it appears that lambda's are a one-line version of a function, they are not equivalent to inline statements in C or C++, whose purpose is by passing function stack allocation during invocation for performance reasons. Syntax: lambda [arg1 [,arg2,.....argn]]:expression Example: sum = lambda arg1, arg2: arg1 + arg2 print("Value of total : ", sum( 10, 20 )) This would produce following result: Value of total : 30 16
  • 17. Scope of Variables: • All variables in a program may not be accessible at all locations in that program. This depends on where you have declared a variable. • The scope of a variable determines the portion of the program where you can access a particular identifier. • There are two basic scopes of variables in Python: Global variables Local variables Global vs. Local variables: • Variables that are defined inside a function body have a local scope, and those defined outside have a global scope. • This means that local variables can be accessed only inside the function in which they are declared whereas global variables can be accessed throughout the program body by all functions. 17
  • 18. Example: total = 0 # This is global variable. def sum( arg1, arg2 ): total = arg1 + arg2 print ("Inside the function local total : ", total) return total # Now you can call sum function sum( 10, 20 ) print ("Outside the function global total : ", total) OUTPUT: Inside the function local total : 30 Outside the function global total : 0 18
  • 19. • Global variables can be read from local scope. • def demo(): print(S) S=“I love python” demo() print(S) We can use local and global vaiable with the same name. • def demo(): S=“I love programming” print(S) S=“I love python” demo() print(S) 19
  • 20. The global statement • We can use global keyword, if we want to change the value of a global variable within a function and outside the function too. • def demo(): • global S S=“I love programming” print(S) S=“I love python” demo() print(S) 20
  • 21. Returning multiple values • It is possible in python to return multiple values. • Example 1: • Def calculate(num1, num2): • return num1+num2, num1-num2 • print(“ “, calculate(10,20)) • Example 2: • Def calculate(num1, num2): • return num1+num2, num1-num2 • add, sub=calculate(10,20) • print(“add= “, add,”sub=“, sub) 21