Return Statement

When 
we 
call 
a 
function, 
we 
can 
get 
a 
value 
from 
it 
as 
an 
output 
using 
the 
return
 
statement
. 
We 
can 
store 
this 
value 
in 
a 
variable 
and 
use 
it 
outside 
the 
function.
Most 
in-built
 
functions 
return 
a 
value 
when 
we 
use 
them, 
like 
len(), 
min(), 
max(), 
etc.
def function_name():
    <function body>
    return variable_name
value = function_name()
def add(num1, num2):
    total = num1 + num2
    return total
answer = add(1,2)
print(answer)