SlideShare a Scribd company logo
1 of 38
Download to read offline
Functions
Based on CBSE Curriculum
Class-12
By:
Neha Tyagi, PGT CS
KV No-5, 2nd Shift
Jaipur
Neha Tyagi, PGT CS, KV No-5,Jaipur
Functions in Python
• Function is a collection of statements which is made
to perform a specific task.
• To Execute function we have to call it in the
program.
• Instead of writing a large program we can write
small functions as a specific part of program to
accomplish the task.
• Once written a function can also be used in other
programs as library functions.
• Functions can be categorized in three types-
1. Built-in
2. Modules
3. User Defined
Neha Tyagi, PGT CS, KV No-5,Jaipur
Built-in Functions
• These are the functions which are predefined
in python we have to just call them to use.
• Functions make any programming language
efficient and provide a structure to language.
• Python has many built-in functions which
makes programming easy, fast and efficient.
• They always reside in standard library and we
need not to import any module to use them.
• We will study about some built-in function in
next slide.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Built-in Functions. . .
1. Type Conversion Functions: These are the
functions which converts the values from one type to another-
1. int( ) – To convert the string into integer.
2. str( ) – To covert any value into string.
3. float( ) – To covert string into float.
2. Input Functions: This function is used to take input from
user in the form of string.
e.g. name=input(“Enter your name : “)
3. eval function: This function is used to evaluate the value
of a string.
e.g. x=eval(“45+10“)
print(x) # answer will be 55
Neha Tyagi, PGT CS, KV No-5,Jaipur
Built-in Functions. . .
3. min Function: This
function returns the smallest
value among given list of
values.
4. max Function: This
function returns the biggest
value among given list of
values.
5. abs Function: This
function returns the absolute
value of any integer which is
always positive.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Built-in Functions. . .
6. type Function: This
function is used to identify the
type of any value or variable.
7. len Function: This
function returns the length of
given string.
8. round Function: This
function returns the rounded
number of given number up to
given position.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Built-in Functions. . .
9. range Function: If you
want the series between two
numbers then you can use this
function. This is good tool for
FOR Loop. Its syntax is -
range( start, stop, step)
This gives the series from
START to STOP-1 and the
interval between two numbers
of series will be STEP.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Python Modules
• Module is a .py file which contains the
definitions of functions and variables.
• Module is a simple python file.
• When we divide a program into modules then
each module contains functions and variables.
And each functions is made for a special task.
• Once written code in modules can be used in
other programs.
• When we make such functions which may be
used in other programs also then we write
them in module.
• We can import those module in any program
an we can use the functions.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Python Modules. . .
• Python provides two ways to import a
module -
• import statement: to import full module.
• from: To import all or selected functions from the module.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Python Modules. . .
• In last slide’s example first the math.py file
is searched.
• Then a space is created where all the
variables and functions of the math module
may be stored.
• Then statements of modules are executed.
Neha Tyagi, PGT CS, KV No-5,Jaipur
math Module
• math module contains following
functions–
– ceil(x) returns integer bigger than x or x integer.
– floor(x) returns integer smaller than x or x integer.
– pow(x, n) returns xn.
– sqrt(x) returns square root of x.
– log10(x) returns logarithm of x with base-10
– cos(x) returns cosine of x in radians.
– sin(x) returns sine of x in radians.
– tan(x) returns tangent of x in radians.
Neha Tyagi, PGT CS, KV No-5,Jaipur
help Function
• If you forgot that how a library function works then
help( ) is very useful for this situation.
• If this function is used with any module then it
provides the information and details of the given
module and its all the contents.
Neha Tyagi, PGT CS, KV No-5,Jaipur
string Module
• We have already studied about string module in class XI. Here
are some other functions of string module.
– String.capitalize() Converts first character to Capital Letter
– String.find() Returns the Lowest Index of Substring
– String.index() Returns Index of Substring
– String.isalnum() Checks Alphanumeric Character
– String.isalpha() Checks if All Characters are Alphabets
– String.isdigit() Checks Digit Characters
– String.islower() Checks if all Alphabets in a String, are Lowercase
– String.isupper() returns if all characters are uppercase characters
– String.join() Returns a Concatenated String
– String.lower() returns lowercased string
– String.upper()returns uppercased string
– len()Returns Length of an Object
– ord()returns Unicode code point for Unicode character
– reversed()returns reversed iterator of a sequence
– slice()creates a slice object specified by range()
Neha Tyagi, PGT CS, KV No-5,Jaipur
random Module
• When we require such numbers which are not known earlier
e.g. captcha or any type of serial numbers then in this
situation we need random numbers. And here random module
helps us. This contains following functions-
• randrange (): This method always returns any integer between given
lower and upper limit to this method. default lower value is zero (0) and
upper value is one(1).
• random (): This generates floating value between 0 and 1. it does not
require any argument.
Neha Tyagi, PGT CS, KV No-5,Jaipur
random Module. . .
• randint (): This method takes 2 parameters a,b in which first one is lower
and second is upper limit. This may return any number between these two
numbers including both limits. This method is very useful for guessing
applications.
• uniform (): This method return any floating-point number between two
given numbers.
Neha Tyagi, PGT CS, KV No-5,Jaipur
random Module. . .
• choice (): this method is used for random selection from list, tuple or
string.
• shuffle (): this method can shuffle or swap the items of a given list.
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions
• These are the functions which are made by
user as per the requirement of the user.
• Function is a kind of collection of
statements which are written for a specific
task.
• We can use them in any part of our
program by calling them.
• def keyword is used to make user defined
functions.
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions. . .
• We use following syntax with def keyword
to prepare a user defined function.
def Function_Name(List_Of_Parameters):
”””docstring”””
statement(s)
Neha Tyagi, PGT CS, KV No-5,Jaipur
Keyword
Function
Definition
After the line containing def
there should be a 4 spaces
indentation, which is also
know as the body or block
of the function.
User-defined Functions without argument
and without return (Practical)
Neha Tyagi, PGT CS, KV No-5,Jaipur
Function
Definition
Function Call
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions with argument and
without return (Practical)
In the case of arguments,
the values are passed in the
function’s parenthesis. And
they are declared in
definition as well.
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions with argument and
with return value (Practical)
In the case of returning
value, the calculated value is
sent outside the function by
a returning statement. This
returned value will be hold
by a variable used in calling
statement.
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions with multiple
return values (Practical)
In python a function
may return multiple
values. In multiple
returning it returns a
sequence of values to
the calling statement.
These returned values
may be used as per the
requirement.
Neha Tyagi, PGT CS, KV No-5,Jaipur
User-defined Functions with multiple
return values (Practical)
Last program may also
be written as follows.
Result will be the tuple
here.
Parameters and Arguments in Functions
• When we write header of any function then the
one or more values given to its parenthesis ( )
are known as parameter.
• These are the values which are used by the
function for any specific task.
• While argument is the value passed at the time
of calling a function.
• In other words the arguments are used to
invoke a function.
• Formal parameters are said to be parameters
and actual parameters are said to be
arguments.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Neha Tyagi, PGT CS, KV No-5,Jaipur
These are the parameters .
These are the arguments .
Parameters and Arguments in Functions . . .
Types of Arguments
• Python supports 4 types of arguments-
1. Positional Arguments
2. Default Arguments
3. Keyword Arguments
4. Variable Length Arguments
Neha Tyagi, PGT CS, KV No-5,Jaipur
1. Positional Arguments
• These are the arguments which are passed
in correct positional order in function.
• If we change the position of the arguments
then the answer will be changed.
Neha Tyagi, PGT CS, KV No-5,Jaipur
2. Default Arguments
• These are the arguments through which we
can provide default values to the function.
• If we don’t pass any value to the function
then it will take a pre defined value.
Neha Tyagi, PGT CS, KV No-5,Jaipur
This is point to remember
that the default argument
should be given after non
default argument.
3. Keyword Arguments
• If a function have many arguments and we want to change the
sequence of them then we have to use keyword arguments.
• Biggest benefit of keyword argument is that we need not to
remember the position of the argument.
• For this whenever we pass the values to the function then we
pass the values with the argument name. e.g.
Neha Tyagi, PGT CS, KV No-5,Jaipur
If you used one
argument with keyword
then others must also be
called with keywords
otherwise an error will be
raised.
4. Variable Length Arguments
• As we can assume by the name that we can pass any number of
arguments according to the requirement. Such arguments are
known as variable length arguments.
• We use (*) asterik to give Variable length argument.
Neha Tyagi, PGT CS, KV No-5,Jaipur
You can notice here
that every time the
number of arguments
are different and the
answer is calculated
for each number of
arguments.
Passing ARRAYS /LISTS to Function
• In python we use list as array. Well we have to import numpy
module to use array in python.
• We will pass here list to the function. As we know that list is
better than array.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Scope of Variable
• Scope of variable means the part of program where
the variable will be visible. It means where we can
use this variable.
• We can say that scope is the collection of variables
and their values.
• Scope can of two types -
• Global (module)
– All those names which are assigned at top level in module
or directly assigned in interpreter.
• Local (function)
– Those variables which are assigned within a loop of
function.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Using main() as a Function
• Main function is not necessary in python.
• For the convenience of Non-python programmers, we
can use it as follows-
Neha Tyagi, PGT CS, KV No-5,Jaipur
Flow of Execution at the Time of
Function Call
• The execution of any program starts from the very first line and
this execution goes line by line.
• One statement is executed at a time.
• Function doesn’t change the flow of any program.
• Statements of function doesn’t start executing until it is called.
• When function is called then the control is jumped into the
body of function.
• Then all the statements of the function gets executed from top
to bottom one by one.
• And again the control returns to the place where it was called.
• And in this sequence the python program gets executed.
Neha Tyagi, PGT CS, KV No-5,Jaipur
RECURSION
• In recursion, function calls itself until the condition is
not satisfied.
Neha Tyagi, PGT CS, KV No-5,Jaipur
RECURSION. . .
• Recursion is one of the most powerful tools of the
programming language. When a function calls itself
within its body then this is know as recursion.
• There are two conditions to use recursion -
– There must be a terminating condition.
– There must be an if condition in recursive routine.
– Every recursive problem has a special feature its reversal in
the order of execution.
– As many times there is recursive call then every time a new
memory is allocated to the local variables of recursive
function.
– During recursion each value is pushed in a stack.
Neha Tyagi, PGT CS, KV No-5,Jaipur
Drawbacks of RECURSION
• It uses more storage as each values is pushed in to stack.
• If recursive call is not checked carefully then your computer
may go out of memory.
• It is less efficient in terms of time and speed.
Neha Tyagi, PGT CS, KV No-5,Jaipur
धन्यवाद
और अधधक पाठ्य-सामग्री हेतु धनम्न लिंक पर धलिंक करें -
Neha Tyagi, PGT CS, KV No-5,Jaipur
www.pythontrends.wordpress.com

More Related Content

Similar to chapter-2-functionseng-1 (1).pdf

Python programming variables and comment
Python programming variables and commentPython programming variables and comment
Python programming variables and commentMalligaarjunanN
 
3 cs xii_python_functions _ parameter passing
3 cs xii_python_functions _ parameter passing3 cs xii_python_functions _ parameter passing
3 cs xii_python_functions _ parameter passingSanjayKumarMahto1
 
Python Function.pdf
Python Function.pdfPython Function.pdf
Python Function.pdfNehaSpillai1
 
ProgFund_Lecture_4_Functions_and_Modules-1.pdf
ProgFund_Lecture_4_Functions_and_Modules-1.pdfProgFund_Lecture_4_Functions_and_Modules-1.pdf
ProgFund_Lecture_4_Functions_and_Modules-1.pdflailoesakhan
 
(3) cpp procedural programming
(3) cpp procedural programming(3) cpp procedural programming
(3) cpp procedural programmingNico Ludwig
 
Python programming - Functions and list and tuples
Python programming - Functions and list and tuplesPython programming - Functions and list and tuples
Python programming - Functions and list and tuplesMalligaarjunanN
 
functions modules and exceptions handlings.ppt
functions modules and exceptions handlings.pptfunctions modules and exceptions handlings.ppt
functions modules and exceptions handlings.pptRajasekhar364622
 
Dive into Python Functions Fundamental Concepts.pdf
Dive into Python Functions Fundamental Concepts.pdfDive into Python Functions Fundamental Concepts.pdf
Dive into Python Functions Fundamental Concepts.pdfSudhanshiBakre1
 
chapter-1-review-of-python-basics-copy.pdf
chapter-1-review-of-python-basics-copy.pdfchapter-1-review-of-python-basics-copy.pdf
chapter-1-review-of-python-basics-copy.pdfSangeethManojKumar
 
Programming with Python - Week 3
Programming with Python - Week 3Programming with Python - Week 3
Programming with Python - Week 3Ahmet Bulut
 
Lec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringLec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringSri Harsha Pamu
 
Function in C Programming
Function in C ProgrammingFunction in C Programming
Function in C ProgrammingAnil Pokhrel
 

Similar to chapter-2-functionseng-1 (1).pdf (20)

Python programming variables and comment
Python programming variables and commentPython programming variables and comment
Python programming variables and comment
 
3 cs xii_python_functions _ parameter passing
3 cs xii_python_functions _ parameter passing3 cs xii_python_functions _ parameter passing
3 cs xii_python_functions _ parameter passing
 
85ec7 session2 c++
85ec7 session2 c++85ec7 session2 c++
85ec7 session2 c++
 
Python Function.pdf
Python Function.pdfPython Function.pdf
Python Function.pdf
 
ProgFund_Lecture_4_Functions_and_Modules-1.pdf
ProgFund_Lecture_4_Functions_and_Modules-1.pdfProgFund_Lecture_4_Functions_and_Modules-1.pdf
ProgFund_Lecture_4_Functions_and_Modules-1.pdf
 
Functions in C++
Functions in C++Functions in C++
Functions in C++
 
(3) cpp procedural programming
(3) cpp procedural programming(3) cpp procedural programming
(3) cpp procedural programming
 
Python programming - Functions and list and tuples
Python programming - Functions and list and tuplesPython programming - Functions and list and tuples
Python programming - Functions and list and tuples
 
functions modules and exceptions handlings.ppt
functions modules and exceptions handlings.pptfunctions modules and exceptions handlings.ppt
functions modules and exceptions handlings.ppt
 
Python functions
Python functionsPython functions
Python functions
 
Functions
FunctionsFunctions
Functions
 
Dive into Python Functions Fundamental Concepts.pdf
Dive into Python Functions Fundamental Concepts.pdfDive into Python Functions Fundamental Concepts.pdf
Dive into Python Functions Fundamental Concepts.pdf
 
Function
FunctionFunction
Function
 
chapter-1-review-of-python-basics-copy.pdf
chapter-1-review-of-python-basics-copy.pdfchapter-1-review-of-python-basics-copy.pdf
chapter-1-review-of-python-basics-copy.pdf
 
Python_Functions_Unit1.pptx
Python_Functions_Unit1.pptxPython_Functions_Unit1.pptx
Python_Functions_Unit1.pptx
 
Programming with Python - Week 3
Programming with Python - Week 3Programming with Python - Week 3
Programming with Python - Week 3
 
Lec16-CS110 Computational Engineering
Lec16-CS110 Computational EngineeringLec16-CS110 Computational Engineering
Lec16-CS110 Computational Engineering
 
Functions
FunctionsFunctions
Functions
 
Python
PythonPython
Python
 
Function in C Programming
Function in C ProgrammingFunction in C Programming
Function in C Programming
 

Recently uploaded

Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsMehedi Hasan Shohan
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 

Recently uploaded (20)

Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software Solutions
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 

chapter-2-functionseng-1 (1).pdf

  • 1. Functions Based on CBSE Curriculum Class-12 By: Neha Tyagi, PGT CS KV No-5, 2nd Shift Jaipur Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 2. Functions in Python • Function is a collection of statements which is made to perform a specific task. • To Execute function we have to call it in the program. • Instead of writing a large program we can write small functions as a specific part of program to accomplish the task. • Once written a function can also be used in other programs as library functions. • Functions can be categorized in three types- 1. Built-in 2. Modules 3. User Defined Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 3. Built-in Functions • These are the functions which are predefined in python we have to just call them to use. • Functions make any programming language efficient and provide a structure to language. • Python has many built-in functions which makes programming easy, fast and efficient. • They always reside in standard library and we need not to import any module to use them. • We will study about some built-in function in next slide. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 4. Built-in Functions. . . 1. Type Conversion Functions: These are the functions which converts the values from one type to another- 1. int( ) – To convert the string into integer. 2. str( ) – To covert any value into string. 3. float( ) – To covert string into float. 2. Input Functions: This function is used to take input from user in the form of string. e.g. name=input(“Enter your name : “) 3. eval function: This function is used to evaluate the value of a string. e.g. x=eval(“45+10“) print(x) # answer will be 55 Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 5. Built-in Functions. . . 3. min Function: This function returns the smallest value among given list of values. 4. max Function: This function returns the biggest value among given list of values. 5. abs Function: This function returns the absolute value of any integer which is always positive. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 6. Built-in Functions. . . 6. type Function: This function is used to identify the type of any value or variable. 7. len Function: This function returns the length of given string. 8. round Function: This function returns the rounded number of given number up to given position. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 7. Built-in Functions. . . 9. range Function: If you want the series between two numbers then you can use this function. This is good tool for FOR Loop. Its syntax is - range( start, stop, step) This gives the series from START to STOP-1 and the interval between two numbers of series will be STEP. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 8. Python Modules • Module is a .py file which contains the definitions of functions and variables. • Module is a simple python file. • When we divide a program into modules then each module contains functions and variables. And each functions is made for a special task. • Once written code in modules can be used in other programs. • When we make such functions which may be used in other programs also then we write them in module. • We can import those module in any program an we can use the functions. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 9. Python Modules. . . • Python provides two ways to import a module - • import statement: to import full module. • from: To import all or selected functions from the module. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 10. Python Modules. . . • In last slide’s example first the math.py file is searched. • Then a space is created where all the variables and functions of the math module may be stored. • Then statements of modules are executed. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 11. math Module • math module contains following functions– – ceil(x) returns integer bigger than x or x integer. – floor(x) returns integer smaller than x or x integer. – pow(x, n) returns xn. – sqrt(x) returns square root of x. – log10(x) returns logarithm of x with base-10 – cos(x) returns cosine of x in radians. – sin(x) returns sine of x in radians. – tan(x) returns tangent of x in radians. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 12. help Function • If you forgot that how a library function works then help( ) is very useful for this situation. • If this function is used with any module then it provides the information and details of the given module and its all the contents. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 13. string Module • We have already studied about string module in class XI. Here are some other functions of string module. – String.capitalize() Converts first character to Capital Letter – String.find() Returns the Lowest Index of Substring – String.index() Returns Index of Substring – String.isalnum() Checks Alphanumeric Character – String.isalpha() Checks if All Characters are Alphabets – String.isdigit() Checks Digit Characters – String.islower() Checks if all Alphabets in a String, are Lowercase – String.isupper() returns if all characters are uppercase characters – String.join() Returns a Concatenated String – String.lower() returns lowercased string – String.upper()returns uppercased string – len()Returns Length of an Object – ord()returns Unicode code point for Unicode character – reversed()returns reversed iterator of a sequence – slice()creates a slice object specified by range() Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 14. random Module • When we require such numbers which are not known earlier e.g. captcha or any type of serial numbers then in this situation we need random numbers. And here random module helps us. This contains following functions- • randrange (): This method always returns any integer between given lower and upper limit to this method. default lower value is zero (0) and upper value is one(1). • random (): This generates floating value between 0 and 1. it does not require any argument. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 15. random Module. . . • randint (): This method takes 2 parameters a,b in which first one is lower and second is upper limit. This may return any number between these two numbers including both limits. This method is very useful for guessing applications. • uniform (): This method return any floating-point number between two given numbers. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 16. random Module. . . • choice (): this method is used for random selection from list, tuple or string. • shuffle (): this method can shuffle or swap the items of a given list. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 17. User-defined Functions • These are the functions which are made by user as per the requirement of the user. • Function is a kind of collection of statements which are written for a specific task. • We can use them in any part of our program by calling them. • def keyword is used to make user defined functions. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 18. User-defined Functions. . . • We use following syntax with def keyword to prepare a user defined function. def Function_Name(List_Of_Parameters): ”””docstring””” statement(s) Neha Tyagi, PGT CS, KV No-5,Jaipur Keyword Function Definition After the line containing def there should be a 4 spaces indentation, which is also know as the body or block of the function.
  • 19. User-defined Functions without argument and without return (Practical) Neha Tyagi, PGT CS, KV No-5,Jaipur Function Definition Function Call
  • 20. Neha Tyagi, PGT CS, KV No-5,Jaipur User-defined Functions with argument and without return (Practical) In the case of arguments, the values are passed in the function’s parenthesis. And they are declared in definition as well.
  • 21. Neha Tyagi, PGT CS, KV No-5,Jaipur User-defined Functions with argument and with return value (Practical) In the case of returning value, the calculated value is sent outside the function by a returning statement. This returned value will be hold by a variable used in calling statement.
  • 22. Neha Tyagi, PGT CS, KV No-5,Jaipur User-defined Functions with multiple return values (Practical) In python a function may return multiple values. In multiple returning it returns a sequence of values to the calling statement. These returned values may be used as per the requirement.
  • 23. Neha Tyagi, PGT CS, KV No-5,Jaipur User-defined Functions with multiple return values (Practical) Last program may also be written as follows. Result will be the tuple here.
  • 24. Parameters and Arguments in Functions • When we write header of any function then the one or more values given to its parenthesis ( ) are known as parameter. • These are the values which are used by the function for any specific task. • While argument is the value passed at the time of calling a function. • In other words the arguments are used to invoke a function. • Formal parameters are said to be parameters and actual parameters are said to be arguments. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 25. Neha Tyagi, PGT CS, KV No-5,Jaipur These are the parameters . These are the arguments . Parameters and Arguments in Functions . . .
  • 26. Types of Arguments • Python supports 4 types of arguments- 1. Positional Arguments 2. Default Arguments 3. Keyword Arguments 4. Variable Length Arguments Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 27. 1. Positional Arguments • These are the arguments which are passed in correct positional order in function. • If we change the position of the arguments then the answer will be changed. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 28. 2. Default Arguments • These are the arguments through which we can provide default values to the function. • If we don’t pass any value to the function then it will take a pre defined value. Neha Tyagi, PGT CS, KV No-5,Jaipur This is point to remember that the default argument should be given after non default argument.
  • 29. 3. Keyword Arguments • If a function have many arguments and we want to change the sequence of them then we have to use keyword arguments. • Biggest benefit of keyword argument is that we need not to remember the position of the argument. • For this whenever we pass the values to the function then we pass the values with the argument name. e.g. Neha Tyagi, PGT CS, KV No-5,Jaipur If you used one argument with keyword then others must also be called with keywords otherwise an error will be raised.
  • 30. 4. Variable Length Arguments • As we can assume by the name that we can pass any number of arguments according to the requirement. Such arguments are known as variable length arguments. • We use (*) asterik to give Variable length argument. Neha Tyagi, PGT CS, KV No-5,Jaipur You can notice here that every time the number of arguments are different and the answer is calculated for each number of arguments.
  • 31. Passing ARRAYS /LISTS to Function • In python we use list as array. Well we have to import numpy module to use array in python. • We will pass here list to the function. As we know that list is better than array. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 32. Scope of Variable • Scope of variable means the part of program where the variable will be visible. It means where we can use this variable. • We can say that scope is the collection of variables and their values. • Scope can of two types - • Global (module) – All those names which are assigned at top level in module or directly assigned in interpreter. • Local (function) – Those variables which are assigned within a loop of function. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 33. Using main() as a Function • Main function is not necessary in python. • For the convenience of Non-python programmers, we can use it as follows- Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 34. Flow of Execution at the Time of Function Call • The execution of any program starts from the very first line and this execution goes line by line. • One statement is executed at a time. • Function doesn’t change the flow of any program. • Statements of function doesn’t start executing until it is called. • When function is called then the control is jumped into the body of function. • Then all the statements of the function gets executed from top to bottom one by one. • And again the control returns to the place where it was called. • And in this sequence the python program gets executed. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 35. RECURSION • In recursion, function calls itself until the condition is not satisfied. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 36. RECURSION. . . • Recursion is one of the most powerful tools of the programming language. When a function calls itself within its body then this is know as recursion. • There are two conditions to use recursion - – There must be a terminating condition. – There must be an if condition in recursive routine. – Every recursive problem has a special feature its reversal in the order of execution. – As many times there is recursive call then every time a new memory is allocated to the local variables of recursive function. – During recursion each value is pushed in a stack. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 37. Drawbacks of RECURSION • It uses more storage as each values is pushed in to stack. • If recursive call is not checked carefully then your computer may go out of memory. • It is less efficient in terms of time and speed. Neha Tyagi, PGT CS, KV No-5,Jaipur
  • 38. धन्यवाद और अधधक पाठ्य-सामग्री हेतु धनम्न लिंक पर धलिंक करें - Neha Tyagi, PGT CS, KV No-5,Jaipur www.pythontrends.wordpress.com