SlideShare a Scribd company logo
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

PPT
Python programming variables and comment
PPT
Powerpoint presentation for Python Functions
PPT
python slides introduction interrupt.ppt
PPT
Py-Slides-3 difficultpythoncoursefforbeginners.ppt
PPT
functions modules and exceptions handlings.ppt
PPT
functions _
PPTX
JNTUK python programming python unit 3.pptx
PPTX
Python programming - Functions and list and tuples
Python programming variables and comment
Powerpoint presentation for Python Functions
python slides introduction interrupt.ppt
Py-Slides-3 difficultpythoncoursefforbeginners.ppt
functions modules and exceptions handlings.ppt
functions _
JNTUK python programming python unit 3.pptx
Python programming - Functions and list and tuples

Similar to Python Functions.pptx (20)

PDF
3-Python Functions.pdf in simple.........
PPTX
UNIT 3 python.pptx
PPTX
2 Functions2.pptx
PDF
functions- best.pdf
PPTX
UNIT-02-pythonfunctions python function using detehdjsjehhdjejdhdjdjdjddjdhdhhd
PPTX
2_3 Functions 5d.pptx2_3 Functions 5d.pptx
PPTX
Function in Python.pptx by Faculty at gla university in mathura uttar pradesh
PPTX
cbse class 12 Python Functions2 for class 12 .pptx
PDF
Functions2.pdf
PDF
PPTX
CHAPTER 01 FUNCTION in python class 12th.pptx
PPTX
functioninpython-1.pptx
PPTX
functions.pptx
PPTX
Lecture 08.pptx
PDF
Python functions
PDF
ESIT135 Problem Solving Using Python Notes of Unit-2 and Unit-3
PPTX
Functions in Python with all type of arguments
PDF
functions notes.pdf python functions and opp
PPTX
Functions in python
3-Python Functions.pdf in simple.........
UNIT 3 python.pptx
2 Functions2.pptx
functions- best.pdf
UNIT-02-pythonfunctions python function using detehdjsjehhdjejdhdjdjdjddjdhdhhd
2_3 Functions 5d.pptx2_3 Functions 5d.pptx
Function in Python.pptx by Faculty at gla university in mathura uttar pradesh
cbse class 12 Python Functions2 for class 12 .pptx
Functions2.pdf
CHAPTER 01 FUNCTION in python class 12th.pptx
functioninpython-1.pptx
functions.pptx
Lecture 08.pptx
Python functions
ESIT135 Problem Solving Using Python Notes of Unit-2 and Unit-3
Functions in Python with all type of arguments
functions notes.pdf python functions and opp
Functions in python
Ad

Recently uploaded (20)

PDF
flutter Launcher Icons, Splash Screens & Fonts
PDF
Top 10 read articles In Managing Information Technology.pdf
PPT
Drone Technology Electronics components_1
PDF
Geotechnical Engineering, Soil mechanics- Soil Testing.pdf
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Lesson 3_Tessellation.pptx finite Mathematics
PPTX
Road Safety tips for School Kids by a k maurya.pptx
PDF
Monitoring Global Terrestrial Surface Water Height using Remote Sensing - ARS...
PDF
International Journal of Information Technology Convergence and Services (IJI...
PDF
Queuing formulas to evaluate throughputs and servers
PPTX
Fluid Mechanics, Module 3: Basics of Fluid Mechanics
PDF
Introduction to Data Science: data science process
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
Practice Questions on recent development part 1.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
PPTX
The-Looming-Shadow-How-AI-Poses-Dangers-to-Humanity.pptx
PPTX
Internship_Presentation_Final engineering.pptx
PPTX
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
PPTX
web development for engineering and engineering
flutter Launcher Icons, Splash Screens & Fonts
Top 10 read articles In Managing Information Technology.pdf
Drone Technology Electronics components_1
Geotechnical Engineering, Soil mechanics- Soil Testing.pdf
Operating System & Kernel Study Guide-1 - converted.pdf
Lesson 3_Tessellation.pptx finite Mathematics
Road Safety tips for School Kids by a k maurya.pptx
Monitoring Global Terrestrial Surface Water Height using Remote Sensing - ARS...
International Journal of Information Technology Convergence and Services (IJI...
Queuing formulas to evaluate throughputs and servers
Fluid Mechanics, Module 3: Basics of Fluid Mechanics
Introduction to Data Science: data science process
bas. eng. economics group 4 presentation 1.pptx
Practice Questions on recent development part 1.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
The-Looming-Shadow-How-AI-Poses-Dangers-to-Humanity.pptx
Internship_Presentation_Final engineering.pptx
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
web development for engineering and engineering
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