Defining a Function

def
 
keyword 
is 
used 
to 
create 
a 
function 
in 
python.
We 
define 
a 
function 
by 
writing
 
def 
followed 
by 
the 
function
 
name
, 
the 
round 
()
 
brackets, 
and 
colon
 
":"
.
The 
function 
body 
then 
functions 
body 
comes 
under 
the 
def 
block. 
It 
needs 
to 
be 
indented
(4 
spaces 
or 
a 
tab).
def function_name():
    <function body>
def add():
    a=1
    b=2
    print(a+b)
add()
#calling the function